chore: Update .gitignore to ignore vendor directory #83
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: Pact-Workshop(GoLang) | |
on: | |
push: | |
branches: | |
- step6 | |
pull_request: | |
branches: | |
- step6 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21 | |
- name: install | |
run: make install | |
- name: install_cli | |
run: make install_cli | |
- name: consumer unit tests | |
run: make unit | |
- name: consumer pact tests | |
run: make consumer | |
- name: provider pact tests | |
run: make provider || true |