fix toolchain so that analyzer works for me #10
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: CI | |
on: [push, pull_request] | |
jobs: | |
# Ensure correct Rust code formatting | |
formatting: | |
name: format-check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly | |
components: rustfmt | |
- name: Format check | |
run: cargo fmt --all -- --check | |
# Build plugin | |
build: | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly | |
- name: Build | |
run: | | |
cargo build --release --verbose | |
- name: Extract Short Commit Hash | |
id: extract | |
shell: bash | |
run: echo commit=$(git rev-parse --short HEAD) >> $GITHUB_OUTPUT | |
- name: Upload Build Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: r2rcon-rs-${{ steps.extract.outputs.commit }} | |
path: | | |
target/release/*.dll | |
target/release/*.pdb |