Skip to content

try running ci tests #44

try running ci tests

try running ci tests #44

Workflow file for this run

name: Python application
on:
push:
branches: ["main"]
permissions:
contents: read
linux:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
target: [x86_64]
defaults:
run:
working-directory: ./src/python
steps:

Check failure on line 19 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Build Wheels
uses: messense/maturin-action@v1
with:
command: build
target: ${{ matrix.target }}
args: -i --release
- name: Run tests
run: |
pip install pytest
pytest