feat: 🎸 actions

This commit is contained in:
Atsukoro1 2022-12-05 13:36:42 +01:00
parent 2e831a5251
commit 2dd7c53d30

View file

@ -1,36 +1,29 @@
name: Rust build 📦 name: 📦 Release Workflow
on: on:
release: release:
types: [created] types: [created]
env:
CARGO_TERM_COLOR: always
jobs: jobs:
build_linux: release:
name: 🚀 Release ${{ matrix.target }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-pc-windows-gnu
archive: zip
- target: x86_64-unknown-linux-gnu
archive: tar.gz
- target: x86_64-apple-darwin
archive: zip
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@master
- name: Build - name: 📥 Compiling
run: cargo build --verbose uses: rust-build/rust-build.action@v1.3.2
- name: Run tests env:
run: cargo test --verbose GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
build_windows: RUSTTARGET: ${{ matrix.target }}
runs-on: windows-latest ARCHIVE_TYPES: ${{ matrix.archive }}
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build_macos:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose