Link to file in branch from Sigrid CI feedback. #1496
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: unittests | |
on: [push, pull_request] | |
jobs: | |
unittests: | |
name: "Python unit tests" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out repository" | |
uses: actions/checkout@v4 | |
- run: "pip3 install -r test/requirements.txt --user" | |
- run: "python3 -m unittest" | |
- run: "importchecker sigridci" |