Test bc23 #3
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
on: | |
workflow_dispatch | |
name: Test bc23 | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
path: bc23 | |
- uses: actions/checkout@v3 | |
with: | |
repository: 'ParadigmMC/mcman' | |
ref: 'source-rewrite' | |
path: 'mcman' | |
- run: rustup toolchain install stable | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo run --manifest-path ${{ github.workspace }}/mcman/Cargo.toml --quiet run --test | |
working-directory: ${{ github.workspace }}/bc23 |