diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 37ba7b3..aebd057 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -14,37 +14,26 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v3 - - name: Set up Rust - uses: actions/setup-rust@v1 - with: - rust-version: stable - name: Build run: cargo build --verbose - name: Run CLI - run: cargo run --bin cli_app + run: cargo run --bin cli_app + build-windows: runs-on: windows-latest steps: - uses: actions/checkout@v3 - - name: Set up Rust - uses: actions/setup-rust@v1 - with: - rust-version: stable-x86_64-pc-windows-msvc - name: Build run: cargo build --verbose - name: Run CLI - run: cargo run --bin cli_app + run: cargo run --bin cli_app build-linux: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Set up Rust - uses: actions/setup-rust@v1 - with: - rust-version: stable - name: Build run: cargo build --verbose - name: Run CLI - run: cargo run --bin cli_app + run: cargo run --bin cli_app \ No newline at end of file