Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cargo build with --locked option on Actions #402

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,12 @@ jobs:
if: matrix.c2a_user == 'subobc'
working-directory: ./examples/mobc
run: |
cargo build
cargo build --locked

- name: build C2A
working-directory: ./examples/${{ matrix.c2a_user }}
run: |
cargo build
cargo build --locked

- name: run mobc C2A
if: matrix.c2a_user == 'mobc'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
uses: sksat/[email protected]
with:
reporter: ${{ github.event_name == 'pull_request' && 'github-pr-review' || 'github-check' }}
clippy_flags: --workspace --all-features
clippy_flags: --workspace --all-features --locked

- name: format
run: cargo fmt --all -- --check
Expand Down
Loading