|
@@ -1,4 +1,4 @@
|
|
|
-name: "Test"
|
|
|
+name: Test
|
|
|
|
|
|
on:
|
|
|
push:
|
|
@@ -10,17 +10,17 @@ jobs:
|
|
|
name: Test
|
|
|
runs-on: ubuntu-latest
|
|
|
steps:
|
|
|
+ - name: Checkout repository
|
|
|
+ uses: actions/checkout@v4
|
|
|
+
|
|
|
- name: Set up Go
|
|
|
uses: actions/setup-go@v5
|
|
|
with:
|
|
|
- go-version: '^1.21.0'
|
|
|
+ go-version: ^1.21.0
|
|
|
|
|
|
- name: Display Go version
|
|
|
run: go version
|
|
|
|
|
|
- - name: Checkout repository
|
|
|
- uses: actions/checkout@v4
|
|
|
-
|
|
|
- name: Install dependencies
|
|
|
run: go get
|
|
|
|