Skip to content

Try to fix unit tests by removing read-only from the workspace #44

Try to fix unit tests by removing read-only from the workspace

Try to fix unit tests by removing read-only from the workspace #44

Workflow file for this run

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@v4
- 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
vanetza/docker-ci:${{matrix.ubuntu-version}}