Skip to content

docs: record v1.1.0-rc1 publication #23

docs: record v1.1.0-rc1 publication

docs: record v1.1.0-rc1 publication #23

name: Security tests
on:
push:
pull_request:
permissions:
contents: read
concurrency:
group: security-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
security:
runs-on: ubuntu-24.04
timeout-minutes: 45
steps:
- name: Check out repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065
with:
python-version: "3.12"
- name: Install firmware toolchain
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
gcc-arm-none-eabi \
binutils-arm-none-eabi \
libnewlib-arm-none-eabi \
make
- name: Install dependencies
run: python -m pip install -r requirements-security.txt
- name: Run full local security profile
run: make test-security PYTHON=python SECURITY_FUZZ_ITERATIONS=10000