From cadee88062eeda7b31f4ef0b722563cb5f4244c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Camilo=20Garc=C3=ADa?= Date: Thu, 1 Feb 2024 14:43:05 -0500 Subject: [PATCH] Add Cache workflow for CI --- .github/workflows/Cache.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/Cache.yml diff --git a/.github/workflows/Cache.yml b/.github/workflows/Cache.yml new file mode 100644 index 0000000..cabbc35 --- /dev/null +++ b/.github/workflows/Cache.yml @@ -0,0 +1,18 @@ +name: CI + +on: [push, pull_request] + +# needed to allow julia-actions/cache to delete old caches that it has created +permissions: + actions: write + contents: read + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v1 + - uses: julia-actions/cache@v1 + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 \ No newline at end of file