Skip to content

Commit

Permalink
fix(ci): remove matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
arodindev committed Aug 4, 2024
1 parent c38133a commit a61479a
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,18 @@ on:

jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
poetry-version: ["1.8.2"]
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: "3.11"
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
poetry-version: "1.8.2"
- name: Install dev dependencies (lint)
run: poetry install -v --no-interaction --no-root --only dev
- name: Run linting
Expand Down

0 comments on commit a61479a

Please sign in to comment.