Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
PharmCat committed Aug 21, 2023
1 parent e54dd06 commit 040f0b4
Showing 1 changed file with 20 additions and 13 deletions.
33 changes: 20 additions & 13 deletions .github/workflows/Tier1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ on:
- 'README.md'
- '.github/**'
- 'docs/**'
- 'validation/**'
- 'test/validation**'
- 'img/**'
- 'change.log'
- '.gitignore'
pull_request:
Expand All @@ -19,24 +18,32 @@ on:
- 'LICENSE.md'
- 'README.md'
jobs:
ci:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1.6, 1.8, 1]
julia-arch: [x64]
os: [ubuntu-latest, macOS-latest, windows-latest]
version:
- '1.6'
- '1.8'
- '1'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-buildpkg@master
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
if: ${{ matrix.os == 'ubuntu-latest' && matrix.julia-version == '1.8' && matrix.arch == 'x64' }}
- uses: codecov/codecov-action@v1
if: ${{ matrix.os == 'ubuntu-latest' && matrix.julia-version == '1.8' && matrix.arch == 'x64' }}
- uses: codecov/codecov-action@v3
with:
file: lcov.info
files: lcov.info

0 comments on commit 040f0b4

Please sign in to comment.