Skip to content

Commit

Permalink
Updated CI to use pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
sveinbjornt committed Sep 18, 2023
1 parent 345ad12 commit 3611591
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: tests

on:
push:
branches: [ master ]
branches:
- '*'
pull_request:
branches: [ master ]
branches:
- '*'

jobs:
build:
Expand All @@ -22,13 +24,13 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools pytest types-setuptools mypy
python -m pip install ".[dev]"
- name: Run mypy
run: |
mypy iceaddr/*.py
- name: Test with pytest
run: |
python -m pytest
python -m pytest -vvv
Expand Down

0 comments on commit 3611591

Please sign in to comment.