Skip to content

Commit

Permalink
ci: Update workflow name and select version with go-version-file
Browse files Browse the repository at this point in the history
  • Loading branch information
wkyoshida authored Jun 29, 2024
1 parent f1c24ca commit d5dbfb2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr_ci.yml → .github/workflows/pr_ci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: pr_ci
on:
pull_request:
branches: [ "main" ]
Expand All @@ -10,12 +10,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: '1.20'
go-version-file: 'go.mod'

- name: Install dependencies
run: go get .

- name: Test with the Go
- name: Run tests
run: make test

0 comments on commit d5dbfb2

Please sign in to comment.