Skip to content

Commit

Permalink
remove --locked
Browse files Browse the repository at this point in the history
  • Loading branch information
SwayStar123 committed Aug 13, 2024
1 parent 7426835 commit 6c4f5b3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
if [ "${{ matrix.job }}" = "build-sway-lib" ]; then
forc fmt --path libs --check
cargo fmt --manifest-path tests/Cargo.toml --verbose --check
forc build --path libs --release --locked
forc build --path tests --release --locked
forc build --path libs --release
forc build --path tests --release
cargo test --manifest-path tests/Cargo.toml
elif [ "${{ matrix.job }}" = "forc-inline-tests" ]; then
forc build --path libs --release --locked && forc test --path libs --locked
forc build --path tests --release --locked && forc test --path tests --locked
forc build --path libs --release && forc test --path libs
forc build --path tests --release && forc test --path tests
elif [ "${{ matrix.job }}" = "contributing-book" ]; then
forc fmt --path docs/contributing-book/src/code --check
forc build --path docs/contributing-book/src/code --release
Expand All @@ -52,6 +52,6 @@ jobs:
elif [ "${{ matrix.job }}" = "build-examples" ]; then
forc fmt --path examples --check
cargo fmt --manifest-path examples/Cargo.toml --verbose --check
forc build --path examples --release --locked
forc build --path examples --release
cargo test --manifest-path examples/Cargo.toml
fi

0 comments on commit 6c4f5b3

Please sign in to comment.