Skip to content

Commit 83ec31a

Browse files
committed
Update CI config
1 parent 37585c0 commit 83ec31a

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,15 @@ jobs:
4949
- uses: actions/checkout@v3
5050
- name: Install Rust
5151
run: rustup update stable
52-
- uses: actions-rs/clippy-check@v1
53-
with:
54-
token: ${{ secrets.GITHUB_TOKEN }}
55-
args: --all-features -- -W clippy::all
52+
- run: cargo clippy --all-features
5653

5754
fmt:
5855
runs-on: ubuntu-latest
5956
steps:
6057
- uses: actions/checkout@v3
6158
- name: Install Rust
6259
run: rustup update stable
63-
- run: cargo fmt --all -- --check
60+
- run: cargo fmt --all --check
6461

6562
miri:
6663
runs-on: ubuntu-latest

.github/workflows/release.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,12 @@ on:
55
tags:
66
- v[0-9]+.*
77

8-
env:
9-
RUSTFLAGS: -D warnings
10-
RUST_BACKTRACE: 1
11-
128
jobs:
139
create-release:
1410
if: github.repository_owner == 'smol-rs'
1511
runs-on: ubuntu-latest
1612
steps:
1713
- uses: actions/checkout@v3
18-
- name: Install Rust
19-
run: rustup update stable
20-
- run: cargo package
2114
- uses: taiki-e/create-gh-release-action@v1
2215
with:
2316
changelog: CHANGELOG.md

0 commit comments

Comments
 (0)