Bump github.com/cucumber/godog from 0.14.1 to 0.15.0 in /tests/suite #486
Workflow file for this run
This file contains 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: pr | |
on: | |
pull_request: | |
env: | |
GO111MODULE: "on" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
outputs: | |
go-version: ${{ steps.find-go-version.outputs.go-version }} | |
go-latest-version: ${{ steps.find-go-version.outputs.go-latest-version }} | |
go-supported-versions: ${{ steps.find-go-version.outputs.go-supported-versions }} | |
steps: | |
- name: Checkout code | |
uses: nhatthm/gh-actions/checkout@master | |
- id: find-go-version | |
name: Find Go version | |
uses: nhatthm/gh-actions/find-go-version@master | |
precondition: | |
name: precondition | |
needs: [setup] | |
outputs: | |
passed: ${{ steps.check.outputs.passed == '' && 'true' || steps.check.outputs.passed }} | |
runs-on: ubuntu-latest | |
env: | |
IS_DEPENDABOT_PR: ${{ startsWith(github.head_ref, 'dependabot/go_modules/') && 'true' || 'false' }} | |
GO_VERSION: ${{ needs.setup.outputs.go-version }} | |
GO_LATEST_VERSION: ${{ needs.setup.outputs.go-latest-version }} | |
steps: | |
- name: Checkout code | |
uses: nhatthm/gh-actions/checkout@master | |
if: ${{ env.IS_DEPENDABOT_PR == 'true' }} | |
- name: Install Go | |
uses: nhatthm/gh-actions/setup-go@master | |
if: ${{ env.IS_DEPENDABOT_PR == 'true' }} | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- id: check | |
if: ${{ env.IS_DEPENDABOT_PR == 'true' }} | |
run: .github/scripts/pr_precondition.sh | |
lint-go: | |
name: lint | |
strategy: | |
fail-fast: false | |
matrix: | |
module: [ ".", "tests/suite", "tests/mssql", "tests/mysql", "tests/postgres" ] | |
runs-on: ubuntu-latest | |
needs: [setup, precondition] | |
env: | |
GO_VERSION: ${{ needs.setup.outputs.go-version }} | |
GO_LATEST_VERSION: ${{ needs.setup.outputs.go-latest-version }} | |
if: ${{ needs.precondition.outputs.passed == 'true' }} | |
steps: | |
- name: Checkout code | |
uses: nhatthm/gh-actions/checkout@master | |
- name: Install Go | |
uses: nhatthm/gh-actions/setup-go@master | |
with: | |
go-version: ${{ env.GO_LATEST_VERSION }} | |
- name: Lint | |
uses: nhatthm/gh-actions/golangci-lint@master | |
with: | |
working-directory: ${{ matrix.module }} | |
args: --timeout=5m | |
lint-gherkin: | |
name: lint | |
runs-on: ubuntu-latest | |
needs: precondition | |
if: ${{ needs.precondition.outputs.passed == 'true' }} | |
steps: | |
- name: Checkout code | |
uses: nhatthm/gh-actions/checkout@master | |
- name: Lint | |
uses: nhatthm/gh-actions/gherkin-lint@master | |
with: | |
feature_files: tests/features/* | |
config_file: tests/.gherkin-lintrc | |
test-unit: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
go-version: ${{ fromJson(needs.setup.outputs.go-supported-versions) }} | |
arch: [ "386", amd64 ] | |
exclude: | |
- os: macos-latest | |
arch: "386" | |
runs-on: ${{ matrix.os }} | |
needs: [setup, precondition] | |
if: ${{ needs.precondition.outputs.passed == 'true' }} | |
env: | |
GO_LATEST_VERSION: ${{ needs.setup.outputs.go-latest-version }} | |
steps: | |
- name: Checkout code | |
uses: nhatthm/gh-actions/checkout@master | |
- name: Install Go | |
uses: nhatthm/gh-actions/setup-go@master | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Test | |
id: test | |
env: | |
GOARCH: ${{ matrix.arch }} | |
run: | | |
make test-unit | |
- name: Upload code coverage (unit) | |
if: ${{ matrix.go-version == env.GO_LATEST_VERSION }} | |
uses: nhatthm/gh-actions/codecov@master | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./unit.coverprofile | |
flags: unittests-${{ runner.os }}-${{ runner.arch }} | |
test-compatibility-mssql: | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: ${{ fromJson(needs.setup.outputs.go-supported-versions) }} | |
arch: [ "386", amd64 ] | |
mssql-version: [ "2019" ] | |
runs-on: ubuntu-latest | |
needs: [setup, test-unit] | |
steps: | |
- name: Checkout code | |
uses: nhatthm/gh-actions/checkout@master | |
- name: Install Go | |
uses: nhatthm/gh-actions/setup-go@master | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache-key: ${{ runner.os }}-go-${{ matrix.go-version }}-mssql-cache-${{ hashFiles('**/go.sum') }} | |
cache-restore-keys: ${{ runner.os }}-go-${{ matrix.go-version }}-mssql-cache | |
- name: Test | |
id: test | |
env: | |
GOARCH: ${{ matrix.arch }} | |
MSSQL_VERSION: ${{ matrix.mssql-version }}-latest | |
run: | | |
make test-compatibility-mssql | |
test-compatibility-mysql: | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: ${{ fromJson(needs.setup.outputs.go-supported-versions) }} | |
arch: [ "386", amd64 ] | |
mysql-version: [ "8" ] | |
runs-on: ubuntu-latest | |
needs: [setup, test-unit] | |
steps: | |
- name: Checkout code | |
uses: nhatthm/gh-actions/checkout@master | |
- name: Install Go | |
uses: nhatthm/gh-actions/setup-go@master | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache-key: ${{ runner.os }}-go-${{ matrix.go-version }}-mysql-cache-${{ hashFiles('**/go.sum') }} | |
cache-restore-keys: ${{ runner.os }}-go-${{ matrix.go-version }}-mysql-cache | |
- name: Test | |
id: test | |
env: | |
GOARCH: ${{ matrix.arch }} | |
MYSQL_VERSION: ${{ matrix.mysql-version }} | |
run: | | |
make test-compatibility-mysql | |
test-compatibility-postgres: | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: ${{ fromJson(needs.setup.outputs.go-supported-versions) }} | |
arch: [ "386", amd64 ] | |
postgres-version: [ "12", "13", "14", "15", "16" ] | |
postgres-driver: [ "postgres", "pgx/v4", "pgx/v5" ] | |
runs-on: ubuntu-latest | |
needs: [setup, test-unit] | |
steps: | |
- name: Checkout code | |
uses: nhatthm/gh-actions/checkout@master | |
- name: Install Go | |
uses: nhatthm/gh-actions/setup-go@master | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache-key: ${{ runner.os }}-go-${{ matrix.go-version }}-postgres-cache-${{ hashFiles('**/go.sum') }} | |
cache-restore-keys: ${{ runner.os }}-go-${{ matrix.go-version }}-postgres-cache | |
- name: Test | |
id: test | |
env: | |
GOARCH: ${{ matrix.arch }} | |
POSTGRES_VERSION: ${{ matrix.postgres-version }}-alpine | |
POSTGRES_DRIVER: ${{ matrix.postgres-driver }} | |
run: | | |
make test-compatibility-postgres |