Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move linting to separate CI job #62

Merged
merged 11 commits into from
Sep 13, 2024
31 changes: 28 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@


name: test

on: [push, pull_request]

# # Gave up -- could not figure out how to use environment variables :-(
# env:
# # I got these from: https://github.com/prefix-dev/setup-pixi/blob/main/README.md
# # they seem to keep it pretty up to date
# SETUP_PIXI_VERSION: v0.8.1
# PIXI_VERSION: v0.29.0

jobs:
test:
runs-on: ${{ matrix.os }}
Expand All @@ -10,13 +21,27 @@ jobs:
environment: [test310, test311, test312]
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/setup-pixi@v0.7.0
- uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: v0.22.0
pixi-version: v0.29.0
cache: true
# auth-host: prefix.dev
# auth-token: ${{ secrets.PREFIX_DEV_TOKEN }}
- run: pixi run --environment test312 lint
# - run: pixi run --environment test312 lint
- run: pixi run --environment ${{ matrix.environment }} test
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/[email protected]
with:
pixi-version: v0.29.0
cache: true
# auth-host: prefix.dev
# auth-token: ${{ secrets.PREFIX_DEV_TOKEN }}
- run: pixi run --environment test310 lint



Loading