Skip to content

Commit

Permalink
migrate off of actions-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
kvcache committed Apr 25, 2024
1 parent d30a638 commit a9c996a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
- uses: actions/checkout@v4

- name: Toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
override: true
components: rustfmt, clippy

- uses: Swatinem/rust-cache@v2

- name: Rustfmt
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1

- name: Toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
override: true

- uses: Swatinem/rust-cache@v2

- uses: katyo/publish-crates@v2
Expand Down

0 comments on commit a9c996a

Please sign in to comment.