Skip to content

Updated ci, including setup-pixi, checkout and setup-python versions. #10

Updated ci, including setup-pixi, checkout and setup-python versions.

Updated ci, including setup-pixi, checkout and setup-python versions. #10

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: windows-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Setup Pixi
uses: prefix-dev/[email protected]
- name: Run linter
run: pixi run lint
test:
runs-on: windows-latest
strategy:
matrix:
environment: [py310]
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Setup Pixi
uses: prefix-dev/[email protected]
with:
environments: ${{ matrix.environment }}
- name: Run Tests
run: pixi run test
build:
runs-on: windows-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Setup Pixi
uses: prefix-dev/[email protected]
- name: Run Tests
run: pixi run test
- name: Publish Code Coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build Docs
run: pixi run docs