Skip to content
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/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
- name: Build
run: docker build . --pull -f varia/Dockerfile.tests --tag ego-build
- name: Test suite
run: docker run --rm ego-build cargo test --color=always
run: docker run --rm ego-build cargo test --color=always --all-targets
- name: Clippy lints
run: docker run --rm ego-build cargo clippy --color=always --all-targets --all-features -- -D warnings
run: docker run --rm ego-build cargo clippy --color=always --all-targets --all-features -- --no-deps -D warnings
- name: rustfmt
run: docker run --rm ego-build cargo fmt -- --color=always --check
1 change: 1 addition & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion varia/Dockerfile.tests
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ RUN mkdir src/ && \

# Do the actual build
COPY . .
RUN cargo build --bins --tests --color=always
RUN cargo build --all-targets --color=always
RUN cargo install --locked --debug --path=.