workflow: switch to composite action to fix go/pytest
The go/pytest tests were broken because the reusable workflow is not quite the right construct. We need the "composite action".
This commit is contained in:
parent
573f56a6ec
commit
25043b2e70
4 changed files with 18 additions and 22 deletions
6
.github/workflows/go.yaml
vendored
6
.github/workflows/go.yaml
vendored
|
|
@ -12,20 +12,16 @@ on: # yamllint disable-line rule:truthy
|
|||
types: ["checks_requested"]
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
uses: ./.github/workflows/testdeps.yaml
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: ./.github/actions/testdeps
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: 'stable'
|
||||
|
||||
- name: Build
|
||||
run: go build -v ./...
|
||||
|
||||
- name: Test
|
||||
run: go test -v ./...
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue