diff --git a/.github/workflows/standard-go-test.yml b/.github/workflows/standard-go-test.yml new file mode 100644 index 0000000..9788981 --- /dev/null +++ b/.github/workflows/standard-go-test.yml @@ -0,0 +1,12 @@ +name: Standard Test + +on: + push: + branches: [ main ] + pull_request: + +jobs: + call-standard-test: + name: Test + uses: gobuffalo/.github/.github/workflows/go-test.yml@v1 + secrets: inherit diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml deleted file mode 100644 index fcf4efd..0000000 --- a/.github/workflows/tests.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Tests -on: - push: - branches: - - main - pull_request: - -jobs: - tests-off: - name: ${{ matrix.os }} - Go v${{ matrix.go-version }} - runs-on: ${{ matrix.os }} - strategy: - matrix: - go-version: - - "1.16.x" - - "1.17.x" - - "1.18.x" - os: - - "macos-latest" - - "windows-latest" - - "ubuntu-latest" - steps: - - uses: actions/checkout@v3 - - name: Setup Go ${{ matrix.go }} - uses: actions/setup-go@v3 - with: - go-version: ${{ matrix.go-version }} - - name: Tests - run: | - go test -race ./...