1
0
Fork 0
mirror of https://github.com/on4kjm/FLEcli.git synced 2025-02-08 08:52:25 +01:00
FLEcli/.github/workflows/ci.yml

80 lines
1.8 KiB
YAML
Raw Normal View History

2020-07-18 22:06:45 +02:00
#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
2020-07-18 21:27:57 +02:00
on:
push:
branches:
- 'master'
pull_request:
branches:
- '*'
2020-07-18 21:27:57 +02:00
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '^1.19.5'
- name: Check out code
uses: actions/checkout@v4
- name: Lint Go Code with golangci-lint
uses: golangci/golangci-lint-action@v3
- name: Vet Go Code
run: |
make vet
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '^1.19.5'
- name: Check out code
uses: actions/checkout@v4
- name: Run Unit tests.
run: |
make test-coverage
- name: Upload Coverage report to CodeCov
uses: codecov/codecov-action@v3.1.4
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage.txt
2020-07-18 21:27:57 +02:00
build:
runs-on: ubuntu-latest
name: Build and Integration tests
needs: [lint, test]
2020-07-18 21:27:57 +02:00
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
2020-07-18 21:27:57 +02:00
with:
go-version: '^1.19.5'
2020-07-18 21:27:57 +02:00
- run: go mod download
- name: Validates GO releaser config
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
args: check
2020-07-18 21:27:57 +02:00
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
2020-07-18 21:27:57 +02:00
with:
distribution: goreleaser
args: release --snapshot --skip-publish --clean
2020-08-12 18:10:23 +02:00
- 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