Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Jul 22, 2024
1 parent fa4ceaf commit 85fba52
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,6 @@ jobs:
- run: cargo build -p rune --no-default-features --features alloc
- run: cargo test --all-targets
- run: cargo test --doc
- run: cargo run --bin rune -- check --recursive --experimental scripts
- run: cargo run --bin rune -- test --recursive --experimental scripts --opt include-std
- run: cargo run --bin rune -- test
- run: cargo run --bin rune -- check --recursive --experimental --path scripts
- run: cargo run --bin rune -- test --recursive --experimental --path scripts
- run: cargo run --bin rune -- test --opt include-std
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
- release

env:
KICK_VERSION: "${{github.event.inputs.version}} || nightly"
KICK_VERSION: "${{github.event.inputs.channel}} || nightly"
RUST_LOG: kick=trace

jobs:
Expand All @@ -30,11 +30,10 @@ jobs:
- uses: Swatinem/rust-cache@v2
- run: cargo test --all-targets
- run: cargo test --doc
- run: cargo run --bin rune -- check --recursive --experimental scripts
- run: cargo run --bin rune -- test --recursive --experimental scripts
- run: cargo run --bin rune -- check --recursive --experimental --path scripts
- run: cargo run --bin rune -- test --recursive --experimental --path scripts

build:
needs: test
runs-on: ${{matrix.os}}
strategy:
matrix:
Expand All @@ -54,7 +53,7 @@ jobs:
path: dist

publish:
needs: build
needs: [test, build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 85fba52

Please sign in to comment.