Skip to content

[dev] Update GitHub Badge #53

[dev] Update GitHub Badge

[dev] Update GitHub Badge #53

Workflow file for this run

# This is GitHub Action for tests
name: Tests
on:
pull_request:
branches: [master]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11.3"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run pytest
env:
TOXENV: pytest
run: |
pip install -U tox
tox