Merge pull request #48 from marrip/issue-42 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python test | |
on: push | |
jobs: | |
test: | |
name: Run unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Check out the repo | |
uses: actions/checkout@v4 | |
- | |
name: Unit testing | |
uses: fylein/python-pytest-github-action@v2 | |
with: | |
args: pip3 install -r requirements.txt && pytest |