Skip to content

go.mod: update all dependencies #163

go.mod: update all dependencies

go.mod: update all dependencies #163

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.19.x, 1.20.x, 1.21.x]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v4
with:
path: './src/github.com/kevinburke/twilio-go'
# staticcheck needs this for GOPATH
- run: |
echo "GOPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
echo "PATH=$GITHUB_WORKSPACE/bin:$PATH" >> $GITHUB_ENV
- name: Download dependencies
run: go get -t -v ./...
working-directory: './src/github.com/kevinburke/twilio-go'
- name: Run tests
run: make ci
working-directory: './src/github.com/kevinburke/twilio-go'