I did not fix it. Did update readme tho #11
Workflow file for this run
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: Rust | |
on: | |
push: | |
branches: [ "2.0" ] | |
pull_request: | |
branches: [ "2.0" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust nightly | |
run: rustup override set nightly | |
- name: Install required components | |
run: rustup component add rustfmt clippy | |
- name: Cache cargo registry | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cargo/registry | |
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-registry- | |
- name: Cache cargo build | |
uses: actions/cache@v2 | |
with: | |
path: target | |
key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-build- | |
- name: Build | |
env: | |
CARGO_MANIFEST_DIR: ${{ github.workspace }} | |
run: cargo build --release --verbose | |
- name: Run tests | |
env: | |
CARGO_MANIFEST_DIR: ${{ github.workspace }} | |
run: cargo test --verbose | |
- name: Upload executable | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ferrumc2_0 | |
path: target/release/ferrumc2_0 |