Skip to content
This repository has been archived by the owner on Oct 7, 2023. It is now read-only.

Commit

Permalink
Create test-arch.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
almostintuitive committed May 1, 2023
1 parent 1cb55e1 commit f90a48b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test-arch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: test-arch

on: push

jobs:

run-tests:
runs-on: ubuntu-latest

steps:
- name: checkout
uses: actions/checkout@v3

- name: setup-python
uses: actions/setup-python@v4
with:
python-version: 3.9

- name: install-dependencies
run: |
python -m pip install --upgrade pip
pip install ".[tests]" ".[arch]"
- name: run-tests
run: pytest tests/test_arch.py -s --durations 0

0 comments on commit f90a48b

Please sign in to comment.