rsbbs/.gitea/workflows/test.yaml
John Burwell e536918c62
Some checks failed
Test / Test (push) Failing after 1m49s
python3
2023-05-02 20:58:32 -05:00

20 lines
479 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 Python and pip
run: |
apt update
apt install -y python3-pip
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install .
- name: Run tests
run: python -m unittest