Merge pull request #3786 from austinvazquez/feat-build-add-host #2152
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: project | |
on: | |
push: | |
branches: | |
- main | |
- 'release/**' | |
pull_request: | |
jobs: | |
project: | |
name: checks | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
path: src/github.com/containerd/nerdctl | |
fetch-depth: 100 | |
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache-dependency-path: src/github.com/containerd/nerdctl | |
- uses: containerd/project-checks@434a07157608eeaa1d5c8d4dd506154204cd9401 # v1.1.0 | |
with: | |
working-directory: src/github.com/containerd/nerdctl | |
repo-access-token: ${{ secrets.GITHUB_TOKEN }} | |
- run: ./hack/verify-no-patent.sh | |
working-directory: src/github.com/containerd/nerdctl | |
- run: ./hack/verify-pkg-isolation.sh | |
working-directory: src/github.com/containerd/nerdctl |