mirror of
https://github.com/Cian-H/read_aconity_layers.git
synced 2025-12-22 18:31:56 +00:00
Fixed cross platform testing in worflows
This commit is contained in:
3
.github/workflows/python-package.yaml
vendored
3
.github/workflows/python-package.yaml
vendored
@@ -9,11 +9,12 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build-python:
|
build-python:
|
||||||
|
|
||||||
runs-on: [ubuntu-latest, windows-latest, macos-latest]
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.11", "3.12", "3.13"]
|
python-version: ["3.11", "3.12", "3.13"]
|
||||||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|||||||
5
.github/workflows/rust.yaml
vendored
5
.github/workflows/rust.yaml
vendored
@@ -12,7 +12,10 @@ env:
|
|||||||
jobs:
|
jobs:
|
||||||
build-rust:
|
build-rust:
|
||||||
|
|
||||||
runs-on: [ubuntu-latest, windows-latest, macos-latest]
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|||||||
Reference in New Issue
Block a user