Skip to content
This repository has been archived by the owner on Aug 31, 2024. It is now read-only.

fix rust toolchain #26

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions .github/workflows/go.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'

- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2023-11-13

# - name: Cache cargo
# uses: Swatinem/rust-cache@v2
Expand All @@ -36,6 +29,14 @@ jobs:
git submodule init
git submodule update --recursive --checkout

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'

- name: Set up Rust
uses: dtolnay/rust-toolchain@stable

- name: Build
run: make build

Expand Down
Loading