Skip to content

Commit

Permalink
Add Github actions configuration
Browse files Browse the repository at this point in the history
Signed-off-by: Derek McGowan <derek@mcg.dev>
  • Loading branch information
dmcgowan committed Jan 22, 2024
1 parent 46f1770 commit 78f3494
Showing 1 changed file with 98 additions and 0 deletions.
98 changes: 98 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
# Go version we currently use to build containerd across all CI.
# Note: don't forget to update `Binaries` step, as it contains the matrix of all supported Go versions.
GO_VERSION: "1.21.0"

permissions: # added using https://github.com/step-security/secure-workflows
contents: read

jobs:

#
# golangci-lint
#
linters:
permissions:
contents: read # for actions/checkout to fetch code
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
name: Linters
runs-on: ${{ matrix.os }}
timeout-minutes: 10

strategy:
matrix:
os: [ubuntu-22.04, macos-12, windows-2022]

steps:
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
cache: false # see actions/setup-go#368

- uses: actions/checkout@v3
- uses: golangci/golangci-lint-action@v3
with:
version: v1.52.2
skip-cache: true
args: --timeout=5m

#
# Project checks
#
project:
name: Project Checks
if: github.repository == 'containerd/errdefs'
runs-on: ubuntu-22.04
timeout-minutes: 5

steps:
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
cache: false # see actions/setup-go#368

- uses: actions/checkout@v3
with:
path: src/github.com/containerd/errdefs
fetch-depth: 25

- uses: containerd/project-checks@v1.1.0
with:
working-directory: src/github.com/containerd/errdefs
repo-access-token: ${{ secrets.GITHUB_TOKEN }}

tests:
name: Tests
runs-on: ${{ matrix.os }}
timeout-minutes: 5

strategy:
matrix:
os: [ubuntu-22.04, macos-12, windows-2022]

steps:
- uses: actions/checkout@v2
with:
path: src/github.com/containerd/errdefs

- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}

- name: Set env
shell: bash
run: |
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
- run: |
go test -v -race
working-directory: src/github.com/containerd/errdefs

0 comments on commit 78f3494

Please sign in to comment.