-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (55 loc) · 1.5 KB
/
CI.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
52
53
54
55
name: CI
on:
push:
branches:
- main
- /^release-.*$/
paths:
- '.github/workflows/CI.yml'
- 'test/**'
- 'src/**'
- 'Project.toml'
pull_request:
types: [opened, synchronize, reopened]
paths:
- '.github/workflows/CI.yml'
- 'test/**'
- 'src/**'
- 'Project.toml'
jobs:
test:
name: Julia ${{ matrix.version }} - Flux ${{ matrix.flux-version }} - ${{ github.event_name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
flux-version:
- '0.12'
- '0.13'
version:
- '1' # current release
- '1.6' # earliest supported version
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: x64
- name: "Install Flux"
shell: julia --color=yes --project=. {0}
run: |
using Pkg
Pkg.add([Pkg.PackageSpec(; name="Flux", version="${{ matrix.flux-version }}")])
- uses: actions/cache@v2
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-artifacts-${{ hashFiles('**/Project.toml') }}
restore-keys: ${{ runner.os }}-test-artifacts
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v2
with:
file: lcov.info