1
0
Fork 0
mirror of https://github.com/on4kjm/FLEcli.git synced 2025-02-08 00:42:45 +01:00
FLEcli/.github/workflows/ci.yml
Jean-Marc MEESSEN 2b48a80d8e
review and fix build tooling (#85)
* Changes due to the Goreleaser upgrade
* Get rid of GoReleaser warnings
* Update "CI" GitHub action
* Update "release" GitHub action
2023-02-08 22:07:33 +01:00

79 lines
1.8 KiB
YAML

#Continuous integration action
# largely inspired by https://brunopaz.dev/blog/building-a-basic-ci-cd-pipeline-for-a-golang-application-using-github-actions
name: Build & Test
on:
push:
branches:
- 'master'
pull_request:
branches:
- '*'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '^1.19.5'
- name: Check out code
uses: actions/checkout@v3
- name: Lint Go Code
run: |
make lint
- name: Vet Go Code
run: |
make vet
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '^1.19.5'
- name: Check out code
uses: actions/checkout@v3
- name: Run Unit tests.
run: |
make test-coverage
- name: Upload Coverage report to CodeCov
uses: codecov/codecov-action@v1.0.0
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage.txt
build:
runs-on: ubuntu-latest
name: Build and Integration tests
needs: [lint, test]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '^1.19.5'
- run: go mod download
- name: Validates GO releaser config
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
args: check
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
args: release --snapshot --skip-publish --clean
- name: Setup BATS
run: test/install-bats.sh
- name: Run End-To_end testing with the docker container
run: test/bats/bin/bats test/bats-scripts