Skip to content

Bump actions/checkout from 4 to 5 #1158

Bump actions/checkout from 4 to 5

Bump actions/checkout from 4 to 5 #1158

Workflow file for this run

name: JuliaNightly
# Nightly Version of Julia.
# Runs on PRs and pushes to `master`, but seperate workflow to `CI`
# to avoid inclusion in nightly cron build with failure notifications.
on:
push:
branches: [main]
tags: ["*"]
pull_request:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read
jobs:
test:
name: Julia Nightly - Ubuntu - x64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: julia-actions/setup-julia@v2
with:
version: nightly
- 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@v5
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true