summaryrefslogtreecommitdiffstats
path: root/.github/workflows/unittest.yml
blob: e895e969331eb823e846dd23dfd440e286a68d6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: Unittest

on: [push]

jobs:
  build:
    name: Build unittest
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - name: Set up Python
      uses: actions/setup-python@v4
      with:
        python-version: "3.x"
        cache: 'pip'
    - name: Install requirements
    - run: pip install -r requirements.txt
    - name: Run tests
      run: python -m etc.unittest.main