From 136b72e2b117405b89020484defe79e71645b0eb Mon Sep 17 00:00:00 2001 From: Krisztian Litkey Date: Sat, 13 Jan 2024 17:41:56 +0200 Subject: [PATCH] .github: add CI workflow. Signed-off-by: Krisztian Litkey --- .github/workflows/ci.yaml | 92 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..2ecf921 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,92 @@ +name: CI + +on: + push: + branches: + - main + pull_request: + branches: + - main + - "release-*" + +env: + GO_VERSION: "1.20.x" + WORKDIR: src/github.com/containers/otelttrpc + +permissions: + contents: read + pull-requests: read + +jobs: + linters: + name: Linters + runs-on: ${{ matrix.os }} + timeout-minutes: 10 + + strategy: + matrix: + os: [ ubuntu-latest, macos-latest, windows-latest ] + + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + path: ${{ env.WORKDIR }} + + - name: Setup golang toolchain + uses: actions/setup-go@v3 + with: + go-version: ${{ env.GO_VERSION }} + + - name: Run golangci-lint + uses: golangci/golangci-lint-action@v3 + with: + version: v1.55 + args: --timeout=10m + skip-cache: true + working-directory: ${{ env.WORKDIR }} + + - name: Show golangci-lint errors + run: make lint + working-directory: ${{ env.WORKIR }} + if: ${{ failure() }} + + checks: + strategy: + fail-fast: false + matrix: + os: [ ubuntu-latest, macos-latest, windows-latest ] + + name: ${{ matrix.os }} / Checks + runs-on: ${{ matrix.os }} + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + path: ${{ env.WORKDIR }} + + - name: Setup golang toolchain + uses: actions/setup-go@v3 + with: + go-version: ${{ env.GO_VERSION }} + + - name: Verify go modules + working-directory: ${{ env.WORKDIR }} + run: | + make verify-vendor + + - name: Run tests + working-directory: ${{ env.WORKDIR }} + run: | + make test + + - name: Test build examples + working-directory: ${{ env.WORKDIR }} + run: | + cd example + make + + - name: Coverage + working-directory: ${{ env.WORKDIR }} + run: | + make coverage TESTFLAGS_RACE=-race \ No newline at end of file