Refactor base64 decoding to use a lookup table #585
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: Cross-Platform CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: configure | |
run: cmake --preset examples | |
- name: build | |
run: cmake --build --preset examples | |
- name: test | |
run: | | |
cmake --build --preset examples --target rsa-create-run | |
cmake --build --preset examples --target rsa-verify-run | |
- if: github.event_name == 'push' && always() | |
uses: ./.github/actions/badge | |
with: | |
category: cross-platform | |
label: ${{ matrix.os }} |