Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix action #311

Merged
merged 2 commits into from
Oct 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 25 additions & 20 deletions .github/workflows/pydna_test_and_coverage_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,32 @@ name: Tests & Coverage
on:
push:
branches:
- '**'
- '!master' # excludes master branch
- '!testpypi' # excludes testpypi branch
- "**"
- "!master" # excludes master branch
- "!testpypi" # excludes testpypi branch
tags-ignore:
- '*.*'
- "*.*"
pull_request: {}
jobs:
build:
name: Test (${{ matrix.python-version }}, ${{ matrix.os }})
strategy:
fail-fast: false
matrix:
os: [ 'macos-latest', 'windows-latest' ]
os: ["macos-latest", "windows-latest"]
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"]
include:
- os: ubuntu-latest
python-version: "3.8"
codecov: true
- os: ubuntu-latest
python-version: "3.9"
- os: ubuntu-latest
python-version: "3.10"
- os: ubuntu-latest
python-version: "3.11"
- os: ubuntu-latest
python-version: "3.12"
- os: ubuntu-latest
python-version: "3.8"
codecov: true
- os: ubuntu-latest
python-version: "3.9"
- os: ubuntu-latest
python-version: "3.10"
- os: ubuntu-latest
python-version: "3.11"
- os: ubuntu-latest
python-version: "3.12"
defaults:
run:
shell: bash
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs.prefer-active-python: true
virtualenvs.prefer-active-python: true

- name: 🔩 list Poetry settings
run: poetry config --list
Expand All @@ -66,6 +66,8 @@ jobs:
if: (matrix.codecov)
id: changed-files
uses: tj-actions/changed-files@v45
with:
since_last_remote_commit: true

- uses: actions/cache@v4
if: (matrix.codecov)
Expand All @@ -79,10 +81,13 @@ jobs:
run: poetry run pre-commit install --install-hooks

- name: Run style checking via pre-commit
if: (matrix.codecov)
run: poetry run pre-commit run --files ${{ steps.changed-files.outputs.all_changed_files }}
# ======================================================
if: (matrix.codecov && steps.changed-files.outputs.all_changed_files)
run: |
echo "Changed files:"
echo "${{ steps.changed-files.outputs.all_changed_files }}" | tr ' ' '\n'
poetry run pre-commit run --files ${{ steps.changed-files.outputs.all_changed_files }}

# ======================================================
- name: 🔼 Upload coverage to Codecov
if: (matrix.codecov)
uses: codecov/codecov-action@v4
Expand Down
Loading