20 lines
482 B
YAML
20 lines
482 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 3
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: 3.10
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install .
|
|
- name: Run tests
|
|
run: python -m unittest
|