Skip to content

chore: find working dir fixes #1663

chore: find working dir fixes

chore: find working dir fixes #1663

Workflow file for this run

name: CI
on:
push:
jobs:
lint:
uses: ./.github/workflows/lint.yml
secrets: inherit
precommit:
uses: ./.github/workflows/precommit.yml
secrets: inherit
codespell:
uses: ./.github/workflows/codespell.yml
secrets: inherit
go_mod_tidy_check:
uses: ./.github/workflows/go-mod-tidy-check.yml
secrets: inherit
markdownlint:
uses: ./.github/workflows/markdownlint.yml
secrets: inherit
license_check:
uses: ./.github/workflows/license-check.yml
secrets: inherit
base_tests:
needs: [lint, precommit, codespell, go_mod_tidy_check, markdownlint, license_check]
uses: ./.github/workflows/base-test.yml
permissions:
contents: read
checks: write
secrets: inherit
build:
needs: [lint, precommit, codespell, go_mod_tidy_check, markdownlint, license_check]
uses: ./.github/workflows/build.yml
secrets: inherit
build_no_proxy:
# Only run no_proxy builds on main branch to save CI time
if: github.ref == 'refs/heads/main'
needs: [lint, precommit, codespell, go_mod_tidy_check, markdownlint, license_check]
uses: ./.github/workflows/build-no-proxy.yml
secrets: inherit
integration_tests:
needs: [base_tests, build]
uses: ./.github/workflows/integration-test.yml
permissions:
contents: read
checks: write
secrets: inherit
oidc_integration_tests:
needs: [base_tests, build]
uses: ./.github/workflows/oidc-integration-test.yml
permissions:
id-token: write
contents: read
checks: write
secrets: inherit