Skip to content

Update to Cadence v1.8.3 (#2178) #4808

Update to Cadence v1.8.3 (#2178)

Update to Cadence v1.8.3 (#2178) #4808

Workflow file for this run

name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches:
- master
- "feature/**"
pull_request:
branches:
- master
- "feature/**"
# We need to set this explicitly to make sure the CI works on Windows
# Default shell does not terminate on error in GitHub Actions
# https://github.com/actions/runner-images/issues/6668
defaults:
run:
shell: bash
env:
GO_VERSION: "1.25"
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
- name: Run tests
run: |
make ci
make check-tidy
make check-headers
- name: Upload coverage report
uses: codecov/codecov-action@v5
with:
file: ./coverage.txt
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}
if: matrix.os == 'ubuntu-latest'
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
- name: generate
run: make generate
- uses: golangci/golangci-lint-action@v9
with:
version: v2.4.0
only-new-issues: true
args: --timeout=3m