[sc-90424]: Adding default code owners for compliance (#16) #88
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: Apt based Linux | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
strategy: | |
fail-fast: false | |
matrix: | |
label: | |
- Debian GNU/Linux Bullseye amd64 | |
- Ubuntu Focal amd64 | |
- Ubuntu Jammy amd64 | |
include: | |
- label: Debian GNU/Linux Bullseye amd64 | |
test-docker-image: debian:bullseye | |
test-script: ci/apt-test.sh | |
- label: Ubuntu Focal amd64 | |
test-docker-image: ubuntu:focal | |
test-script: ci/apt-test.sh | |
- label: Ubuntu Jammy amd64 | |
test-docker-image: ubuntu:jammy | |
test-script: ci/apt-test.sh | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: rake compile & rake test | |
run: | | |
docker run \ | |
--rm \ | |
--tty \ | |
--volume ${PWD}:/cmetrics-ruby \ | |
${{ matrix.test-docker-image }} \ | |
/cmetrics-ruby/${{ matrix.test-script }} |