mirror of https://github.com/pressly/goose.git
41 lines
829 B
YAML
41 lines
829 B
YAML
name: Goose CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
name: Run unit tests
|
|
timeout-minutes: 10
|
|
|
|
strategy:
|
|
matrix:
|
|
go-version: ["1.20", "1.21"]
|
|
os: [ubuntu-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- name: Install Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- name: Check Go code formatting
|
|
run: |
|
|
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then
|
|
gofmt -s -l .
|
|
echo "Please format Go code by running: go fmt ./..."
|
|
exit 1
|
|
fi
|
|
- name: Run tests
|
|
run: |
|
|
mkdir -p bin
|
|
go vet ./...
|
|
go build ./...
|
|
make test-packages
|