Skip to content

Commit

Permalink
actually run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wwade committed Feb 7, 2024
1 parent f3fb061 commit 2fb468f
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,23 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"

- name: Install tools
run: |
python -m pip install --upgrade pip setuptools wheel pipenv
- name: Install virtualenv using Pipenv
run: |
pipenv --python ${{ matrix.python-version }} sync --dev
- name: Run linters
run: |
pipenv run make lint
- name: Install jobrunner
run: |
pipenv run make install
- name: Run tests
run: |
pipenv run make check

0 comments on commit 2fb468f

Please sign in to comment.