Skip to content

Github Actions

Github Actions #10

Workflow file for this run

name: "Tests"
on:
pull_request:
push:
branches:
- 'master'
tags:
- '*'
permissions:
pull-requests: write
contents: read
id-token: write
env:
GOLANG_VERSION: "1.16"
jobs:
Tests:
runs-on: ubuntu-latest
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: ${{ env.GOLANG_VERSION }}
- name: Run Tests
timeout-minutes: 10
run: |
cd go/src/github.com/Workiva/go-datastructures
go test ./...