Minimal ARM64 job #1
Workflow file for this run
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: ARM tests | |
on: [push, pull_request] | |
jobs: | |
stylecheck: | |
name: Check code formatting | |
container: openquantumsafe/ci-ubuntu-focal-arm64:latest | |
runs-on: oqs-arm64 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Ensure code conventions are upheld | |
run: python3 -m pytest --verbose tests/test_code_conventions.py | |
- name: Check that doxygen can parse the documentation | |
run: mkdir build && ./scripts/run_doxygen.sh $(which doxygen) ./docs/.Doxyfile ./build | |
- name: Validate CBOM | |
run: scripts/validate_cbom.sh |