Skip to content

add build task

add build task #142

Workflow file for this run

name: Run pytest tests
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: read
checks: write
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
test_environment: [testpy311, testpy312]
steps:
- uses: actions/checkout@v4
with:
lfs: false
- uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: latest
cache: true
locked: false
frozen: false
environments: ${{ matrix.test_environment }}
- run: pixi run -e ${{ matrix.test_environment }} test
- name: Coveralls
uses: coverallsapp/github-action@v2
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: latest
cache: true
locked: false
frozen: false
- run: pixi run lint_ci
type_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: latest
cache: true
locked: false
frozen: false
- run: pixi run -e mne check_types
build:
runs-on: ubuntu-latest

Check failure on line 59 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 59
if: { { github.ref ~= '/^refs/tags/v[ 0-9 ]+\.[ 0-9 ]+\.[ 0-9 ]+\.dev[ 0-9 ]+$/' || github.ref ~= '/^refs/tags/v[ 0-9 ]+\.[ 0-9 ]+\.[ 0-9 ]+$/' } }
needs: [test, lint, type_check]
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: latest
cache: true
locked: false
frozen: false
- run: pixi run hatch build
- uses: actions/upload-artifact@v2
with:
name: dist