Enhanced CI #31
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: RustyServer-CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: | |
- stable | |
- beta | |
- nightly | |
steps: | |
- run: | | |
echo "::group::[📁] - Current project -> $GITHUB_REPOSITORY" | |
echo "[🚀] - Project version -> $version" | |
echo "[🧪] - CI Actor -> $GITHUB_ACTOR (commit $GITHUB_SHA)" | |
echo "::endgroup::" | |
env: | |
version: 0.1.0 | |
- uses: actions/checkout@v1 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
- uses: actions/checkout@v3 | |
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} | |
- name: Build | |
run: cargo build --verbose | |
lint-clippy: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Rust and Clippy | |
run: | | |
rustup component add clippy | |
cargo clippy | |
- name: Run tests | |
run: cargo test | |
- name: Build release | |
run: cargo build --release | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: report-lintcov | |
path: ./.github/workflows/artifacts/report-lintcov.txt | |