Skip to content

Merge pull request #73 from github/fix-cmdline #404

Merge pull request #73 from github/fix-cmdline

Merge pull request #73 from github/fix-cmdline #404

Workflow file for this run

name: go test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: Install git.
run: |
sudo apt-get install -y libcurl4-openssl-dev
git clone https://github.com/git/git.git
git -C git checkout next
sudo make -j 16 -C git prefix=/usr NO_GETTEXT=YesPlease all install
- name: Vendor modules for later steps.
run: |
go mod vendor
- name: go unit test
run: make test
- name: go integration test
run: make test-integration