Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pouyanpi committed Oct 26, 2024
1 parent 61e04aa commit be03077
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/full-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,27 @@ name: Full Tests

on:
push:
branches:
- main
paths:
- "pyproject.toml"
release:
types:
- created
branches: ["feature/poetry"]
pull_request:
branches: ["feature/poetry"]

jobs:
call-tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [Ubuntu, Windows, macOS]
python-version: ["3.9", "3.10", "3.11"]
include:
- os: Ubuntu
image: ubuntu-latest
- os: Windows
image: windows-2022
- os: macOS
image: macos-14
fail-fast: false

uses: ./.github/workflows/_test.yml
with:
os: ${{ matrix.os }}
image: ${{ matrix.image }}
python-version: ${{ matrix.python-version }}

0 comments on commit be03077

Please sign in to comment.