Added TCP LinkLayer to socktap #100
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: unit tests | |
on: [push, pull_request] | |
jobs: | |
docker-unit-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ubuntu-version: [bionic, focal, jammy] | |
steps: | |
- uses: actions/checkout@v3 | |
- run: > | |
docker build | |
--build-arg UBUNTU_VERSION=${{matrix.ubuntu-version}} | |
--tag vanetza/docker-ci:${{matrix.ubuntu-version}} | |
${{github.workspace}}/tools/docker | |
- run: > | |
docker run --rm | |
-v${{github.workspace}}:/home/build-user/workspace:ro | |
vanetza/docker-ci:${{matrix.ubuntu-version}} |