Skip to content

Merge pull request #32 from humanitec/update-client #72

Merge pull request #32 from humanitec/update-client

Merge pull request #32 from humanitec/update-client #72

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.21' ]
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Run tests
run: |
make test