Skip to content

Commit

Permalink
Attempt to fix test step in pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
TiagoOpenCosmos committed Jan 31, 2025
1 parent 220d065 commit e4336a1
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
poetry run black . --check
poetry run isort . --check-only
poetry run flake8 .
bandit:
name: bandit
runs-on: ubuntu-latest
Expand Down Expand Up @@ -105,16 +105,13 @@ jobs:
test:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
needs: [bandit, cognitive, isort, lint, pydocstyle]
steps:
- uses: actions/checkout@v3
- name: set up python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: "3.10"
- name: set up poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: configure gitlab auth
Expand Down

0 comments on commit e4336a1

Please sign in to comment.