Update logo #415
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: Run tests | |
on: | |
push: | |
branches: | |
- master | |
tags: '*' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
os: ["ubuntu-latest"] | |
julia-version: | |
- '~1.10.0-0' | |
- '1.9' | |
- '1.8' | |
- '1.7' | |
- '1.6' | |
- '1.5' | |
- '1.4' | |
- '1.3' | |
- '1.2' | |
- '1.1' | |
- '1.0' | |
- 'nightly' | |
include: | |
- os: windows-latest | |
julia-version: '1' | |
- os: windows-latest | |
julia-version: '1.0' | |
- os: windows-latest | |
julia-version: 'nightly' | |
- os: macOS-latest | |
julia-version: '1' | |
- os: macOS-latest | |
julia-version: '1.0' | |
- os: macOS-latest | |
julia-version: 'nightly' | |
fail-fast: false | |
name: Test Julia ${{ matrix.julia-version }} ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup julia | |
uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.julia-version }} | |
- name: Remove compat entry for old julia versions | |
# This is needed for julia 1.0-1.3, see https://julialang.slack.com/archives/C67910KEH/p1697548190422019?thread_ts=1697546952.011759&cid=C67910KEH | |
if: matrix.julia-version == '1.0' || matrix.julia-version == '1.1' || matrix.julia-version == '1.2' || matrix.julia-version == '1.3' | |
shell: julia --project=. --color=yes {0} | |
run: | | |
using Pkg.TOML | |
prj = TOML.parsefile("Project.toml") | |
delete!(prj["compat"], "Test") | |
open(io -> TOML.print(io, prj), "Project.toml", "w") | |
- uses: julia-actions/julia-runtest@v1 | |
- uses: julia-actions/julia-processcoverage@v1 | |
- uses: codecov/codecov-action@v3 | |
with: | |
file: ./lcov.info | |
flags: unittests | |
name: codecov-umbrella |