Skip to content

feat(major): Add Debian support #11

feat(major): Add Debian support

feat(major): Add Debian support #11

Workflow file for this run

name: Pull Request
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
lint_shell:
name: "Lint: shell"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
lint_dockerfile:
name: "Lint: dockerfile"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: hadolint/[email protected]
with:
recursive: true
dockerfile: "*.Dockerfile"
docker_build:
runs-on: ubuntu-latest
strategy:
matrix:
os_flavour: ["alpine", "debian"]
name: "Docker build: ${{ matrix.os_flavour }}"
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Call the docker build chain
run: ./build.sh
env:
OS_FLAVOUR: ${{ matrix.os_flavour }}