Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Nov 13, 2024
1 parent 8e279fd commit 525b8df
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,27 @@ concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

env:
FORCE_COLOR: "1"

permissions:
contents: read

jobs:
pytest:

runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
strategy:
fail-fast: false
max-parallel: 2
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.12"
- "3.11"
- "3.10"
- "3.9"

steps:
- uses: actions/checkout@v4
Expand All @@ -39,11 +46,9 @@ jobs:
with:
version: ">=0.5.0"
- name: Test with pytest
id: test_pytest
continue-on-error: false
env:
TAP_FACEBOOK_ACCESS_TOKEN: ${{ secrets.tap_facebook_access_token }}
TAP_FACEBOOK_ACCOUNT_ID: ${{ secrets.tap_facebook_account_id }}
TAP_FACEBOOK_START_DATE: ${{ secrets.tap_facebook_start_date }}
run: |
uvx tox -e ${{ matrix.python-version }}
uvx --with=tox-uv tox -e ${{ matrix.python-version }}

0 comments on commit 525b8df

Please sign in to comment.