Skip to content

Commit

Permalink
Minimal ARM64 job
Browse files Browse the repository at this point in the history
  • Loading branch information
SWilson4 committed Jun 6, 2024
1 parent d8a6998 commit c8dd976
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/arm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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

0 comments on commit c8dd976

Please sign in to comment.