summaryrefslogtreecommitdiff
path: root/.github/workflows/tests.yml
blob: 9fa10c9c827e13d1a81ad59fe5d972a1fcb8ebf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Tests
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - name: Set up Python
      uses: actions/setup-python@v5
      with:
        python-version: '3.x'
    - name: Install dependencies
      run: |
        python -m pip install --upgrade pip
        pip install pytest
    - name: Run tests
      run: pytest