Skip to content

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #30

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #30

Workflow file for this run

name: pytest
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest maturin pydantic
- name: Build Rust project
run: |
maturin build
pip install target/wheels/*
- name: Run Python tests
run: |
pytest