There was an error while loading. Please reload this page.
1 parent c0bbfa9 commit ef49290Copy full SHA for ef49290
2 files changed
.DS_Store
0 Bytes
.github/workflows/rust.yml .github/workflows/go.yml.github/workflows/rust.yml renamed to .github/workflows/go.yml
@@ -1,22 +1,22 @@
1
-name: Rust
+name: Go
2
3
on:
4
push:
5
branches: [ "main" ]
6
pull_request:
7
8
9
-env:
10
- CARGO_TERM_COLOR: always
11
-
12
jobs:
13
- build:
14
+ build:
15
runs-on: ubuntu-latest
16
17
steps:
18
- uses: actions/checkout@v4
+
+ - name: Set up Go
+ uses: actions/setup-go@v4
+ with:
19
+ go-version: '1.20'
20
21
- name: Build
- run: cargo build --verbose
- - name: Run tests
22
- run: cargo test --verbose
+ run: go build -v ./...
0 commit comments