forked from saintpete/twilio-go
-
Notifications
You must be signed in to change notification settings - Fork 69
28 lines (28 loc) · 850 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.22.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: './src/github.com/kevinburke/twilio-go'
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: |
./src/github.com/kevinburke/twilio-go/go.sum
# 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'