rsbbs/.gitea/workflows/test.yaml
John Burwell 5d4dbfbe45
Some checks failed
Test / Test (push) Failing after 1m17s
where
2023-05-02 21:16:26 -05:00

21 lines
504 B
YAML

name: Test
run-name: ${{ github.actor }} running tests
on: [push]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Install Python and pip
run: |
apt update
apt install -y python3-pip
whereis python3
- 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