mirror of https://github.com/pressly/goose.git
31 lines
627 B
YAML
31 lines
627 B
YAML
name: Goose integration tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test:
|
|
name: Run integration tests
|
|
timeout-minutes: 10
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- name: Install Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "stable"
|
|
- name: Install tparse
|
|
run: go install github.com/mfridman/tparse@main
|
|
- name: Run full integration tests
|
|
run: |
|
|
make test-integration
|