Version Packages #143
Workflow file for this run
This file contains hidden or 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: pull-request-main | |
on: | |
merge_group: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci-lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
actions: read | |
steps: | |
- name: Linting Go | |
uses: smartcontractkit/.github/actions/ci-lint-go@eeb76b5870e3c17856d5a60fd064a053c023b5f5 # [email protected] | |
with: | |
only-new-issues: "false" | |
golangci-lint-version: v2.0.2 | |
# Override the lint args because the detault ones are not compatible with golangci-lint v2 | |
golangci-lint-args: --output.checkstyle.path=golangci-lint-report.xml | |
ci-lint-misc: | |
name: Lint GH Actions and scripts | |
runs-on: ubuntu-latest | |
steps: | |
- name: Linting Misc (yaml + sh files) | |
uses: smartcontractkit/.github/actions/ci-lint-misc@eeb76b5870e3c17856d5a60fd064a053c023b5f5 # [email protected] | |
ci-test: | |
name: Tests | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
actions: read | |
steps: | |
- name: Build and test | |
uses: smartcontractkit/.github/actions/ci-test-go@eeb76b5870e3c17856d5a60fd064a053c023b5f5 # [email protected] | |
with: | |
go-test-cmd: go test -coverprofile=coverage.txt $(go list ./...) | |
use-go-cache: true |