Sort DataFrames inplace. #904
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: Julia Tests | |
on: | |
push: | |
branches: [main] | |
paths-ignore: [".teamcity/**"] | |
tags: ["*"] | |
pull_request: | |
merge_group: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Julia ${{ matrix.julia_version }} - ${{ matrix.os }} - ${{ matrix.arch }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
julia_version: | |
- "1.9" | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
- windows-latest | |
arch: | |
- x64 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: latest | |
cache: true | |
- name: Prepare pixi | |
run: | | |
pixi install | |
pixi run post-install-without-pre-commit | |
- name: Prepare model input | |
run: | | |
pixi run generate-testmodels | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.julia_version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/cache@v1 | |
with: | |
cache-compiled: "true" | |
cache-registries: "true" | |
- uses: julia-actions/julia-buildpkg@v1 | |
with: | |
project: core | |
- uses: julia-actions/julia-runtest@v1 | |
with: | |
project: core | |
- uses: julia-actions/julia-processcoverage@v1 | |
with: | |
directories: core/src | |
- uses: codecov/codecov-action@v3 | |
with: | |
files: lcov.info |