Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
cstub committed Jan 13, 2025
1 parent e3d0558 commit b4ffd3e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Quality Checks

on: [push, pull_request]

jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Run pre-commit
uses: pre-commit/[email protected]
17 changes: 2 additions & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,8 @@
name: Test
name: Run Tests

on: [push, pull_request]

jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Run pre-commit
uses: pre-commit/[email protected]

test:
runs-on: ubuntu-latest
steps:
Expand All @@ -36,7 +23,7 @@ jobs:
environment-file: environment.yml

- name: Install Docker
uses: docker-practice/actions-setup-docker@master
uses: docker-practice/actions-setup-docker@v1

- name: Install Poetry
uses: abatilo/actions-poetry@v3
Expand Down

0 comments on commit b4ffd3e

Please sign in to comment.