fix linreg test on julia dev #269
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: continuous-integration | |
concurrency: | |
group: ${{ github.head_ref }}.ci | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'LICENSE.md' | |
- 'README.md' | |
- 'examples/**' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- 'LICENSE.md' | |
- 'README.md' | |
- 'examples/**' | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
version: [1.9] | |
arch: [x64] | |
os: [ubuntu-22.04] # macos-10.15, windows-2019 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Julia Setup | |
uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- name: Cache | |
uses: julia-actions/cache@v1 | |
with: | |
cache-compiled: "true" | |
- name: Build | |
uses: julia-actions/julia-buildpkg@v1 | |
- name: Test | |
uses: julia-actions/julia-runtest@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Percy Upload | |
if: ${{ matrix.version == '1.9' }} | |
run: | | |
ls ./test/output/ # useful for debugging | |
npx @percy/cli upload ./test/output | |
env: | |
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} | |
- name: Coverage Process | |
uses: julia-actions/julia-processcoverage@v1 | |
- name: Coverage Upload | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |