Skip to content

Commit

Permalink
dot slash it
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoverbear committed Jan 22, 2025
1 parent f660784 commit 23a44e6
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
name: criticalup-${{ matrix.os }}

- name: Auth Criticalup
run: criticalup auth set $CRITICALUP_TOKEN
run: ./criticalup auth set $CRITICALUP_TOKEN

- name: "Define toolchain"
run: |
Expand All @@ -137,20 +137,20 @@ jobs:
- name: Run test workflow
working-directory: crab-boil
run:
criticalup run -- cargo init
./criticalup run -- cargo init

${{ (runner.os == 'Windows' && 'criticalup.exe run -- cargo --version') || '' }}
${{ (runner.os == 'Windows' && 'criticalup run -- cargo.exe --version') || '' }}
${{ (runner.os == 'Windows' && './criticalup.exe run -- cargo --version') || '' }}
${{ (runner.os == 'Windows' && './criticalup run -- cargo.exe --version') || '' }}

criticalup run -- cargo build
./criticalup run -- cargo build

criticalup run -- cargo run
./criticalup run -- cargo run

criticalup which rustc
./criticalup which rustc

criticalup remove
./criticalup remove

criticalup clean
./criticalup clean
license:
name: Check licenses
runs-on: ubuntu-latest
Expand Down Expand Up @@ -214,6 +214,7 @@ jobs:
if: success()
needs:
- build-test
- runner-test
- docs
- deploy-docs
steps:
Expand Down

0 comments on commit 23a44e6

Please sign in to comment.