Skip to content

Commit

Permalink
Merge branch 'master' into fix_lzw_32bit
Browse files Browse the repository at this point in the history
  • Loading branch information
tlnagy authored May 31, 2024
2 parents f0e6e54 + 377bda2 commit a9036d2
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,38 +25,40 @@ jobs:
- windows-latest
arch:
- x64
include:
- os: ubuntu-latest
version: '1'
arch: x86
- os: macos-latest
version: '1'
arch: aarch64
- os: macos-latest
version: 'nightly'
arch: aarch64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-downgrade-compat@v1 # downgrade packages to minimum compatible version on 1.6
if: ${{ matrix.version == '1.6' }}
with:
skip: Mmap, UUIDs, Test
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
skip: Mmap, UUIDs, Test
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v4
with:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- run: |
Expand Down

0 comments on commit a9036d2

Please sign in to comment.