Skip to content

Commit

Permalink
trying to fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippPolterauer committed Jan 19, 2024
1 parent b9706fc commit 302a98c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
override: true
components: rustfmt, clippy

- name: Run rustfmt
- name: Run cargo fmt
uses: actions-rs/cargo@v1
# No need to execute it multiple times
if: matrix.os == 'ubuntu-latest'
Expand All @@ -33,8 +33,15 @@ jobs:
command: clippy
args: --all-targets --all-features

- name: Run build
uses: actions-rs/cargo@v1
with:
command: build
args: --release

- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --release

2 changes: 1 addition & 1 deletion tests/examples.in/Cargo.lock

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

2 changes: 1 addition & 1 deletion tests/examples.in/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "testpackage"
name = "examples-package"
version = "0.1.0"
edition = "2021"
publish = false
Expand Down

0 comments on commit 302a98c

Please sign in to comment.