-
Notifications
You must be signed in to change notification settings - Fork 4
56 lines (54 loc) · 1.45 KB
/
Check.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
56
name: Code checks
on:
push:
branches:
- 'master'
- 'release-'
tags:
- '*'
pull_request:
jobs:
runic:
name: Runic (Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
version:
- '1.6'
- '1.7'
- '1.8'
- '1.9'
- '1'
- 'nightly'
os:
- ubuntu-latest
include:
- os: windows-latest
version: '1'
- os: macOS-latest
version: '1'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v2
- name: Install dependencies
run: |
julia --project -e 'using Pkg; Pkg.instantiate()'
- name: Run Runic and check diff
if: ${{ matrix.version == 'nightly' }}
run: |
julia --project -m Runic -i $(git ls-files -- '*.jl')
git diff --exit-code
- name: Run Runic and check diff
if: ${{ matrix.version != 'nightly' }}
run: |
julia --project -e 'using Runic; Runic.main(ARGS)' -i $(git ls-files -- '*.jl')
git diff --exit-code
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
file: lcov.info
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}