Skip to content

Commit

Permalink
ci: Install go
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelburnham committed Sep 11, 2024
1 parent 2998b2e commit d824714
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
build-and-test:
strategy:
Expand All @@ -19,6 +23,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Install go
- uses: actions/setup-go@v5
with:
go-version: '1.22'
cache-dependency-path: "**/go.sum"

# Step 1: Set up Rust and build with Cargo
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
Expand Down

0 comments on commit d824714

Please sign in to comment.