Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fujiwara committed May 8, 2024
1 parent f552b8a commit eba1b20
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 50 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/release.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/workflows/tagpr.yml

This file was deleted.

10 changes: 6 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,25 @@ jobs:
strategy:
matrix:
go:
- '1.20'
- '1.21'
- '1.22'
name: Build
runs-on: ubuntu-latest

steps:
- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build & Test
run: |
go test -race ./...
go generate ./cmd/aws-sdk-client-gen .
go build -o aws-sdk-client-go ./cmd/aws-sdk-client-go/main.go
go test ./...
env:
GO111MODULE: on

0 comments on commit eba1b20

Please sign in to comment.