Skip to content

core: add sandboxing for imagemagick et al #7644

core: add sandboxing for imagemagick et al

core: add sandboxing for imagemagick et al #7644

Workflow file for this run

# Run Dialyzer
name: Dialyzer
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
linux:
name: Dialyzer on OTP ${{ matrix.otp_version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
otp_version: [28.5]
os: [ubuntu-latest]
container:
image: erlang:${{ matrix.otp_version }}
steps:
- uses: actions/checkout@v7
- name: Install build dependencies
run: |
apt-get update
apt-get -y install libseccomp-dev
- name: Dialyzer
run: make dialyzer