Skip to content

Commit

Permalink
update testyaml
Browse files Browse the repository at this point in the history
  • Loading branch information
kechigon committed Oct 25, 2024
1 parent 50c7159 commit 70907cd
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,23 @@ on:
- develop
- main

jobs:
build:
jobs:
build:
runs-on: ubuntu-latest

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.2

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.2
- name: Install dependencies
run: go mod tidy

- name: Install dependencies
run: go mod tidy
- name: Build
run: go build ./...

- name: Build
run: go build ./...

- name: Run tests
run: go test ./... -v
- name: Run tests
run: go test ./... -v

0 comments on commit 70907cd

Please sign in to comment.