Skip to content

Commit

Permalink
Merge pull request #235 from DerwenAI/update_ci_v3
Browse files Browse the repository at this point in the history
updating the GH actions to v3
  • Loading branch information
ceteri authored Aug 7, 2023
2 parents 7cc079b + 1c15636 commit 218a37a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ name: CI
on: [push, pull_request, workflow_dispatch]

jobs:
pre-commit:
name: Run pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: pre-commit/action@v2.0.0
# pre-commit:
# name: Run pre-commit
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v3
# - uses: pre-commit/action@v3.0.0

test:
name: Tests for Python ${{ matrix.python-version }}
Expand All @@ -18,13 +18,13 @@ jobs:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
fail-fast: false
needs: pre-commit
# needs: pre-commit

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

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

Expand Down

0 comments on commit 218a37a

Please sign in to comment.