diff --git a/.github/workflows/go.yml b/.github/workflows/ci.yml similarity index 90% rename from .github/workflows/go.yml rename to .github/workflows/ci.yml index 7dfe4d8..9e1d05d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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