diff options
author | 2022-07-15 01:35:23 +0200 | |
---|---|---|
committer | 2022-07-15 01:35:23 +0200 | |
commit | 61fd5b0050724a6b05f2b959c546a58cb6073de3 (patch) | |
tree | d6d978c8665ae2ad69b8165446979b6c461995f4 /.github | |
parent | 2883aa31bb8133813e92d3fb83d122ab8719364a (diff) | |
parent | 408474ca3181ec9948236372ad15d10fce8b280a (diff) | |
download | iced-61fd5b0050724a6b05f2b959c546a58cb6073de3.tar.gz iced-61fd5b0050724a6b05f2b959c546a58cb6073de3.tar.bz2 iced-61fd5b0050724a6b05f2b959c546a58cb6073de3.zip |
Merge pull request #1387 from Luni-4/ci-improvements
CI improvements
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/format.yml | 2 | ||||
-rw-r--r-- | .github/workflows/lint.yml | 2 | ||||
-rw-r--r-- | .github/workflows/test.yml | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 92caff79..42a96411 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -9,4 +9,4 @@ jobs: components: rustfmt - uses: actions/checkout@master - name: Check format - run: cargo fmt --all -- --check + run: cargo fmt --all -- --check --verbose diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 688c2087..6fd98374 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,4 +9,4 @@ jobs: components: clippy - uses: actions/checkout@master - name: Check lints - run: cargo clippy --all --all-features --no-deps + run: cargo clippy --workspace --all-features --all-targets --no-deps -- -D warnings diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 433afadc..38b81842 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,8 +20,8 @@ jobs: sudo apt-get install -y libxkbcommon-dev - name: Run tests run: | - cargo test --verbose --all - cargo test --verbose --all --all-features + cargo test --verbose --workspace + cargo test --verbose --workspace --all-features web: runs-on: ubuntu-latest |