Merge pull request #3 from YutaroHayakawa/renovate/golang.org-x-sys-0.x #10
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install kernel module | |
run: | | |
sudo apt install -y linux-modules-extra-$(uname -r) | |
sudo modprobe vrf | |
sudo lsmod | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: ./go.mod | |
- name: Run tests | |
run: ./test.sh |