Improve releasing logic on CI #68
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- v* | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12.1" | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install pre-commit | |
- name: Lint | |
run: pre-commit run --all-files --show-diff-on-failure | |
test-rust: | |
name: Test Rust source | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
rust-toolchain: | |
- stable | |
- nightly | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
features: | |
- [] | |
- [tracing] | |
- [strict] | |
- [tracing, strict] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: hecrj/setup-rust-action@v2 | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-${{ matrix.rust-toolchain }}-${{ join(matrix.features, '-') }} | |
- name: Unit tests | |
if: matrix.features[0] != null | |
run: cargo test -p svg-path-cst --features ${{ join(matrix.features, ',') }} | |
- name: Unit tests | |
if: matrix.features[0] == null | |
run: cargo test -p svg-path-cst | |
- name: Integration tests | |
if: matrix.os != 'windows-latest' | |
run: sh src/tests/integration.sh | |
test-release-crate: | |
name: Test crate release | |
needs: | |
- test-rust | |
- lint | |
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: hecrj/setup-rust-action@v2 | |
- name: Publish | |
run: | | |
cargo login ${{ secrets.CRATES_TOKEN }} | |
cargo publish -v --dry-run | |
release-crate: | |
name: Release crate | |
if: startsWith(github.ref, 'refs/tags/') | |
needs: test-release-crate | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: hecrj/setup-rust-action@v2 | |
- name: Publish | |
run: | | |
cargo login ${{ secrets.CRATES_TOKEN }} | |
cargo publish -v |