Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# It is tweaked by hand to use PyPI Trusted Publishers:
# https://www.maturin.rs/distribution#using-pypis-trusted-publishing
name: CI
name: Publish

on:
release:
Expand All @@ -30,7 +30,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12'
args: --release --out dist --interpreter '3.9 3.10 3.11 3.12'
sccache: "true"
manylinux: auto
- name: Upload wheels
Expand All @@ -53,7 +53,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12'
args: --release --out dist --interpreter '3.9 3.10 3.11 3.12'
sccache: "true"
manylinux: musllinux_1_2
- name: Upload wheels
Expand All @@ -77,7 +77,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12'
args: --release --out dist --interpreter '3.9 3.10 3.11 3.12'
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand All @@ -99,7 +99,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12'
args: --release --out dist --interpreter '3.9 3.10 3.11 3.12'
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ on:
push:
branches:
- main
- release
pull_request:

jobs:
Expand All @@ -17,7 +18,7 @@ jobs:
components: clippy, rustfmt
- name: Lint
run: make lint

run_tests:
strategy:
matrix:
Expand Down Expand Up @@ -53,7 +54,7 @@ jobs:
url: ${{ secrets.CODECOV_URL }}
files: unit.junit.xml
disable_search: true
report_type: test-results
report_type: test_results

- name: Upload results to codecov (Staging)
if: ${{ !cancelled() }}
Expand All @@ -63,4 +64,4 @@ jobs:
url: ${{ secrets.CODECOV_STAGING_API_URL }}
files: unit.junit.xml
disable_search: true
report_type: test-results
report_type: test_results
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_results_parser"
version = "0.5.4"
version = "0.6.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down