fix a few typos - test julia 1.10
(#363)
#23
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: CI | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- '1.6' # latest LTS | |
- '1' | |
- '~1.10.0-0' # upcoming julia version, next `rc` | |
os: [ubuntu-latest] | |
arch: [x64] | |
include: # spare windows/macos CI credits | |
- os: windows-latest | |
version: '1' | |
arch: x64 | |
- os: macOS-latest | |
version: '1' | |
arch: x64 | |
- os: ubuntu-latest | |
version: 'nightly' | |
arch: x64 | |
allow_failure: true # `nightly` often breaks | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/cache@v1 | |
- uses: julia-actions/julia-buildpkg@latest | |
- uses: julia-actions/julia-runtest@latest | |
env: | |
JULIA_DEBUG: 'Main,UnicodePlots' | |
COLORTERM: 'truecolor' # 24bit | |
- uses: julia-actions/julia-runtest@latest | |
if: startsWith(matrix.os, 'ubuntu') | |
env: | |
JULIA_DEBUG: 'Main,UnicodePlots' | |
COLORTERM: 'yes' # 8bit - 256 colors | |
- uses: julia-actions/julia-processcoverage@latest | |
- uses: codecov/codecov-action@v3 | |
with: | |
file: lcov.info |