Skip to content

Commit

Permalink
chore: ci wip
Browse files Browse the repository at this point in the history
  • Loading branch information
patmikista committed Apr 5, 2024
1 parent 4853547 commit 9ee6151
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
setup-python:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
Expand All @@ -19,7 +19,7 @@ jobs:


install-poetry:
runs-on: self-hosted
runs-on: ubuntu-latest
needs: [setup-python]
steps:
- name: Install poetry
Expand All @@ -36,28 +36,28 @@ jobs:


install-dependencies:
runs-on: self-hosted
runs-on: ubuntu-latest
needs: [setup-python, install-poetry]
steps:
- name: Install dependencies
run: python -m poetry install

run-tests:
runs-on: self-hosted
runs-on: ubuntu-latest
needs: [install-dependencies]
steps:
- name: Run tests
run: python -m poetry run python -m pytest -sxv

type-checking:
runs-on: self-hosted
runs-on: ubuntu-latest
needs: [install-dependencies]
steps:
- name: Type checking
run: python -m poetry run python -m mypy .

build-packages:
runs-on: self-hosted
runs-on: ubuntu-latest
needs: [install-dependencies]
steps:
- name: Build packages
Expand Down

0 comments on commit 9ee6151

Please sign in to comment.