rsbbs/.gitea/workflows/test.yaml
John Burwell b3ff7a7920
Some checks failed
Test / Test (push) Failing after 51s
try skipping install
2023-05-02 20:53:03 -05:00

16 lines
368 B
YAML

name: Test
run-name: ${{ github.actor }} running tests
on: [push]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Run tests
run: python -m unittest