Introduce MutableTangent #1011
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/') }} | |
jobs: | |
test: | |
name: Julia Nightly - Ubuntu - x64 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: nightly | |
arch: x64 | |
- uses: actions/cache@v2 | |
env: | |
cache-name: julia-nightly-cache-artifacts | |
with: | |
path: ~/.julia/artifacts | |
key: ${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | |
restore-keys: | | |
${{ env.cache-name }}- | |
- uses: julia-actions/julia-buildpkg@latest | |
- uses: julia-actions/julia-runtest@latest | |
- uses: julia-actions/julia-processcoverage@v1 | |
- uses: codecov/codecov-action@v1 | |
with: | |
file: lcov.info |