Skip to content

Commit

Permalink
fix(ci): use corect go version
Browse files Browse the repository at this point in the history
  • Loading branch information
ConsoleTVs committed Jul 29, 2024
1 parent cdc2817 commit 919e768
Showing 1 changed file with 12 additions and 18 deletions.
30 changes: 12 additions & 18 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,22 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Go
name: Test Yotei

on:
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
branches: [ "main" ]
branches: ["main"]

jobs:

build:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

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

- name: Build
run: go build -v ./...
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"

- name: Test
run: go test -v ./...
- name: Test
run: go test -v ./...

0 comments on commit 919e768

Please sign in to comment.