Skip to content

use gomod

use gomod #4

Workflow file for this run

---
name: Build and test a PR
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Extract dependent PR
uses: depends-on/depends-on-action@go-mod
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run build and test
run: |
make test
...