rsbbs/.gitea/workflows/test.yaml
John Burwell faaedb10ce
Some checks failed
Test / Test (push) Failing after 1m1s
without sudo
2023-05-02 20:56:11 -05:00

20 lines
475 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 python3-pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Run tests
run: python -m unittest