We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ade3a4 commit 1caeefeCopy full SHA for 1caeefe
.github/workflows/tests.yml
@@ -0,0 +1,32 @@
1
+name: Run unit tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - main
8
+ pull_request:
9
10
+# needed to allow julia-actions/cache to delete old caches that it has created
11
+permissions:
12
+ actions: write
13
+ contents: read
14
15
+jobs:
16
+ test:
17
+ runs-on: Tests
18
+ strategy:
19
+ matrix:
20
+ julia-version: ['1']
21
+ julia-arch: [x64]
22
+ os: [ubuntu-latest]
23
24
+ steps:
25
+ - uses: actions/checkout@v4
26
+ - uses: julia-actions/setup-julia@v2
27
+ with:
28
+ version: ${{ matrix.julia-version }}
29
+ arch: ${{ matrix.julia-arch }}
30
+ - uses: julia-actions/cache@v2
31
+ - uses: julia-actions/julia-buildpkg@v1
32
+ - uses: julia-actions/julia-runtest@v1
0 commit comments