Skip to content

ci: migrate runs-on to Twilio runner labels + SHA-pin actions #143

ci: migrate runs-on to Twilio runner labels + SHA-pin actions

ci: migrate runs-on to Twilio runner labels + SHA-pin actions #143

Workflow file for this run

---
name: Test
"on":
- pull_request
jobs:
test:
strategy:
matrix:
go:
- "1.23"
- "1.24"
runs-on: ubuntu-latest-large
steps:
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@bfdd3570ce990073878bf10f6b2d79082de49492 # v2
with:
go-version: ${{ matrix.go }}
- name: Download Dependencies
run: go mod download
- name: Run Tests
run: make test