Skip to content

error

error #2

Workflow file for this run

name: Code checks
on:
push:
branches:
- 'master'
- 'release-'
tags:
- '*'
pull_request:
jobs:
runic:
name: Runic (Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
version:
- '1.6'
- '1.7'
- '1.8'
- '1.9'
- '1'
- 'nightly'
os:
- ubuntu-latest
include:
- os: windows-latest
version: '1'
- os: macOS-latest
version: '1'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v2
- name: Install dependencies
run: |
julia --project -e 'using Pkg; Pkg.instantiate()'
- name: Run Runic and check diff
if: ${{ matrix.version == 'nightly' }}
run: |
julia --project -m Runic -i $(git ls-files -- '*.jl')
git diff --exit-code
- name: Run Runic and check diff
if: ${{ matrix.version != 'nightly' }}
run: |
julia --project -e 'using Runic; Runic.main(ARGS)' -i $(git ls-files -- '*.jl')
git diff --exit-code
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
file: lcov.info
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}