Skip to content

Starting to not like workflows so much! #5

Starting to not like workflows so much!

Starting to not like workflows so much! #5

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
setup-environment:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up environment
uses: ./.github/workflows/setup_env.yml
test:
runs-on: ubuntu-latest
needs: setup-environment
steps:
- name: Run tests
run: |
pytest