Skip to content

Switch to ML-DSA-44 #152

Switch to ML-DSA-44

Switch to ML-DSA-44 #152

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} with ext-sodium
runs-on: ${{ matrix.operating-system }}
permissions:
contents: read
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['8.2', '8.3', '8.4', '8.5']
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Setup PHP
uses: "shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1" #v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl, sodium
ini-values: error_reporting=-1, display_errors=On
coverage: none
- name: Install Composer dependencies
uses: "ramsey/composer-install@3cf229dc2919194e9e36783941438d17239e8520" #v3
- name: PHPUnit unit tests
run: vendor/bin/phpunit --testsuite unit
- name: Test vector validation
run: vendor/bin/phpunit --testsuite integration --group test-vectors