Skip to content

Commit

Permalink
ci: update action versions
Browse files Browse the repository at this point in the history
Signed-off-by: Jun Kimura <[email protected]>
  • Loading branch information
bluele committed Oct 3, 2022
1 parent 5b401e2 commit 51d58eb
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
- run: rustup component add rustfmt && cargo fmt --all -- --check

Expand All @@ -13,18 +13,22 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
- uses: Swatinem/rust-cache@v1
- uses: Swatinem/rust-cache@v2
with:
workspaces: |
.
./enclave
- uses: actions-rs/cargo@v1
- run: make test

relayer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.18
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
Expand All @@ -37,7 +41,7 @@ jobs:
sdk-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
- uses: Swatinem/rust-cache@v2
with:
Expand Down

0 comments on commit 51d58eb

Please sign in to comment.