Merge pull request #515 from eulores/main #140
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
vendoring: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '>=1.21' | |
- uses: actions/checkout@v4 | |
- run: | | |
go mod tidy | |
go mod vendor | |
go mod verify | |
bash ./hack/tree_status.sh | |
golangci-lint: | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:latest | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
# cannot use 1.21.X latest version since golangci-lint has an issue. | |
go-version: '1.21.4' | |
- uses: actions/checkout@v4 | |
- run: | | |
bash hack/install_dep.sh | |
make .install.golangci-lint | |
make lint | |
unit_test: | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
# Preparing and running unit tests # | |
dnf -y install git-core golang glibc-static git-core wget gcc make | |
bash ./hack/install_dep.sh | |
export GOBIN=$(pwd)/bin/ | |
make .install.ginkgo | |
make test-unit | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
file: .coverage/coverprofile | |
token: ${{ secrets.CODECOV_TOKEN }} | |
name: codecov-umbrella | |
slug: navidys/podman-tui | |
fail_ci_if_error: true | |
build_binaries: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '>=1.21' | |
- uses: actions/checkout@v4 | |
- run: | | |
make all |