feat: added support for alpine #112
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: Code Quality | |
on: | |
push: | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
stage: prod | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: PROD | |
env: | |
CARGO_SERVER_SSL_CA: "Code-Quality-Test-CA" | |
CARGO_SERVER_SSL_CERT: "Code-Quality-Test-Cert" | |
CARGO_SERVER_SSL_KEY: "Code-Quality-Test-Key" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Rust toolchain and components | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
- name: Setup Cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Create empty .env file | |
run: touch .env | |
- name: Build and Test | |
run: | | |
cargo build --verbose | |
cargo test --verbose | |
cargo clippy -- -D warnings | |
cargo fmt -- --check |