Update and rename go.yml to check.yml
This commit is contained in:
parent
c36178a068
commit
d58a95da63
1 changed files with 13 additions and 6 deletions
|
|
@ -10,15 +10,11 @@ on:
|
||||||
branches: [ "main" ]
|
branches: [ "main" ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
check-formatting:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Set up Go
|
- uses: actions/checkout@v3
|
||||||
uses: actions/setup-go@v3
|
|
||||||
with:
|
|
||||||
go-version: 1.19
|
|
||||||
|
|
||||||
- name: Check formatting
|
- name: Check formatting
|
||||||
uses: Jerome1337/gofmt-action@v1.0.5
|
uses: Jerome1337/gofmt-action@v1.0.5
|
||||||
|
|
@ -26,6 +22,17 @@ jobs:
|
||||||
gofmt-path: '.'
|
gofmt-path: '.'
|
||||||
gofmt-flags: '-l -d'
|
gofmt-flags: '-l -d'
|
||||||
|
|
||||||
|
build-and-test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Set up Go
|
||||||
|
uses: actions/setup-go@v3
|
||||||
|
with:
|
||||||
|
go-version: 1.19
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: go build -v ./...
|
run: go build -v ./...
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue