This repository was archived by the owner on Jan 1, 2025. It is now read-only.
Bump the cargo-dependencies group with 2 updates #147
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: | |
- main | |
tags: | |
- 'v*' | |
pull_request: | |
jobs: | |
formatting-and-quality: | |
name: Formatting and Quality | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
run: rustup component add clippy rustfmt | |
- name: Format | |
run: cargo fmt -- --check | |
- name: Clippy | |
run: cargo clippy -- -Dwarnings | |
build-and-test: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build and Test | |
run: cargo test | |
release-builds: | |
name: Build | |
if: ${{ github.ref_name == 'main' || github.ref_type == 'tag' }} | |
needs: | |
- build-and-test | |
- formatting-and-quality | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
platform: | |
- x86_64-unknown-linux-musl | |
- aarch64-unknown-linux-musl | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
run: cargo install cross | |
- name: Build | |
id: cross-build | |
run: | | |
cross build --release --target ${{ matrix.platform }} | |
cp "target/${{ matrix.platform }}/release/remote-closedown" "remote-closedown-${{ matrix.platform }}" | |
- name: Store binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "remote-closedown-${{ matrix.platform }}" | |
path: "remote-closedown-${{ matrix.platform }}" | |
release: | |
name: Release | |
if: ${{ github.ref_type == 'tag' }} | |
needs: | |
- release-builds | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download binaries | |
uses: actions/download-artifact@v4 | |
- name: Publish release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: remote-closedown-*/remote-closedown-* | |
fail_on_unmatched_files: true |