Merge pull request #600 from squeed/ubuntu-version

CI: Install linux-modules-extra for VRF module
This commit is contained in:
Casey Callendrello 2021-04-08 20:56:41 +02:00 committed by GitHub
commit e27c48b391
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,6 +31,10 @@ jobs:
name: Run tests on Linux amd64
runs-on: ubuntu-latest
steps:
- name: Install kernel module
run: |
sudo apt-get update
sudo apt-get install linux-modules-extra-$(uname -r)
- name: setup go
uses: actions/setup-go@v2
with: