Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github action update #204

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Go
on:
push:
branches: [ main ]
pull_request:

jobs:
vendoring:
Expand Down
61 changes: 61 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,67 @@ jobs:
check_filenames: true
skip: ./.git,./vendor,*_test.go,go.sum,go.mod

vendoring:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: '>=1.20'
- uses: actions/checkout@v3
- run: |
go mod tidy
go mod vendor
go mod verify
bash ./hack/tree_status.sh

golangci-lint_fmt:
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- uses: actions/setup-go@v3
with:
# cannot use 1.21.X latest version since golangci-lint has an issue.
go-version: '1.21.4'
- uses: actions/checkout@v3
- run: |
bash hack/install_dep.sh
make .install.golangci-lint
make lint
make gofmt

tests:
runs-on: ubuntu-latest
container:
image: quay.io/containers/podman:v4
volumes:
- container_volume:/var/lib/containers
options: "--device /dev/fuse:rw --security-opt label=disable --security-opt seccomp=unconfined --privileged"
steps:
- uses: actions/setup-go@v3
with:
go-version: '1.21.4'
- uses: actions/checkout@v3
- run: |
yum -y install make gcc glib2-devel glibc-devel glibc-static device-mapper-devel
export GOBIN=$(pwd)/bin/
export CGO_ENABLED=1
make .install.ginkgo
make test

build_binary:
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- uses: actions/setup-go@v3
with:
go-version: '>=1.20'
- uses: actions/checkout@v3
- run: |
bash hack/install_dep.sh
make binary

goreportcard:
name: update reportcard
if: github.event.pull_request.merged == true
Expand Down
Loading