Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
0xForerunner committed Feb 14, 2024
1 parent 6e4ebd9 commit d764787
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ jobs:
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --locked --features "mimalloc" --all-targets
args: --locked --all-targets
- name: Check docs
uses: actions-rs/cargo@v1
with:
command: doc
args: --locked --features "mimalloc" --no-deps --document-private-items
args: --locked --no-deps --document-private-items

test:
name: Test
Expand Down Expand Up @@ -98,12 +98,12 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: nextest
args: run --workspace --features "mimalloc" --no-run
args: run --workspace --no-run
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: nextest
args: run --workspace --features "mimalloc"
args: run --workspace

cargo-vet:
name: Vet Dependencies
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ENV CARGO_HOME="/root/.cargo"
RUN rustup component add cargo

# Build the sequencer
RUN cargo build --release --features mimalloc
RUN cargo build --release

# Make sure it runs
RUN /src/target/release/signup-sequencer --version
Expand Down

0 comments on commit d764787

Please sign in to comment.