Skip to content

Commit

Permalink
Format file
Browse files Browse the repository at this point in the history
  • Loading branch information
tsundvoll committed Jan 24, 2023
1 parent 6c5da73 commit 3753f52
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on:
branches:
- main
paths-ignore:
- '**.md'
- "**.md"
pull_request:
paths-ignore:
- '**.md'
- "**.md"
jobs:
run:
name: Run
Expand All @@ -17,24 +17,24 @@ jobs:
python-version: ["3.10"]

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
pip install --upgrade pip
pip install -e .[dev]
- name: Lint
run: |
black --check .
mypy .
- name: Lint
run: |
black --check .
mypy .
- name: Test with pytest
run: |
pytest .
- name: Test with pytest
run: |
pytest .

0 comments on commit 3753f52

Please sign in to comment.