Skip to content

Merge pull request #226 from containers/dependabot/go_modules/github.… #60

Merge pull request #226 from containers/dependabot/go_modules/github.…

Merge pull request #226 from containers/dependabot/go_modules/github.… #60

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
jobs:
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_podmanv4:
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
tests_podmanv5:
runs-on: ubuntu-latest
container:
image: quay.io/podman/upstream:latest
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