Merge pull request #86 from pulumi/dependabot/go_modules/google.golan… #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Go 1.19 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.19.x' | |
- name: Run Go Build | |
run: make build | |
- name: Run tests | |
run: make test_all |