-
Notifications
You must be signed in to change notification settings - Fork 9
51 lines (45 loc) · 1.27 KB
/
UnitTests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Unit Tests
on:
pull_request:
branches:
- main
tags: '*'
# Needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
timeout-minutes: 80
strategy:
fail-fast: true
matrix:
include:
- os: ubuntu-latest
julia-version: '1.10'
- os: windows-latest
julia-version: '1.10'
- os: macos-latest
julia-version: '1.10'
- os: ubuntu-latest
julia-version: '~1.11.0-0'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
- uses: julia-actions/julia-processcoverage@latest
- uses: codecov/codecov-action@v4
if: ${{ matrix.version == '1.10' }} && ${{ matrix.os == 'ubuntu-latest' }}
with:
files: lcov.info
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}