Skip to content

chore(deps): bump JuliaRegistries/TagBot from 1.25.8 to 1.25.9 #273

chore(deps): bump JuliaRegistries/TagBot from 1.25.8 to 1.25.9

chore(deps): bump JuliaRegistries/TagBot from 1.25.8 to 1.25.9 #273

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
tags: '*'
concurrency:
# Skip intermediate builds: all builds except for builds on the `master` branch
# Cancel intermediate builds: only pull request builds
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
version:
# Parts of this package depend on Pkg internals.
# Because Pkg internals are allowed to change between Julia minor versions,
# we should run CI on each minor version of Julia that we want to support.
# But it's fine to just run these with Linux, as not to make the matrix too
# big. Also, Julia 1.4.2 does not work on the macos-latest runner for some
# reason, failing with a linking error, so that also sidesteps that issue.
- '1.3'
- '1.4'
- '1.5'
- '1.6'
- '1.7'
- '1.8'
- '1.9'
- '1.10'
- '1.11'
- '1' # automatically expands to the latest stable 1.x release
- 'nightly'
os:
- ubuntu-latest
arch:
- x64
# We still want to run CI on Windows and MacOS for some Julia versions, so
# so doing that for nightly and the latest release.
include:
- os: macOS-latest
version: '1'
arch: x64
- os: windows-latest
version: '1'
arch: x64
- os: macOS-latest
version: 'nightly'
arch: x64
- os: windows-latest
version: 'nightly'
arch: x64
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v6
- uses: julia-actions/setup-julia@fa02766e078afaaf09b14210362cee14137e6a32 # v3.0.2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5
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 }}-
- uses: julia-actions/julia-buildpkg@e3eb439fad4f9aba7da2667e7510e4a46ebc46e1 # v1
- uses: julia-actions/julia-runtest@6e050c8013b833b1195105ff2fce9cd802f53271 # v1
- uses: julia-actions/julia-processcoverage@03114f09f119417c3242a9fb6e0b722676aedf38 # v1
- uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
files: lcov.info