Skip to content

Github Actions

Github Actions #11

Workflow file for this run

name: "Tests"
on:
pull_request:
push:
branches:
- 'master'
tags:
- '*'
permissions:
pull-requests: write
contents: read
id-token: write
jobs:
Tests:
runs-on: ubuntu-latest
matrix:

Check failure on line 19 in .github/workflows/tests.yaml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yaml (Line: 19, Col: 5): Unexpected value 'matrix'
go: [ '1.15', 'stable' ]
name: Tests on Go ${{ matrix.go }}
steps:
- name: Checkout Repo
uses: actions/[email protected]
with:
path: go/src/github.com/Workiva/go-datastructures
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Run Tests
timeout-minutes: 10
run: |
cd go/src/github.com/Workiva/go-datastructures
go test ./...