Add BLAKE2s module #26
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: Tests | |
on: | |
push: | |
paths: '**.luau' | |
branches: 'main' | |
pull_request: | |
paths: '**.luau' | |
jobs: | |
Tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 'Install Luau' | |
run: | | |
gh release download --repo Roblox/luau --pattern luau-ubuntu.zip | |
unzip luau-ubuntu.zip | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: 'Test SHA-1' | |
run: | | |
./luau tests/sha1.luau | |
- name: 'Test SHA-256' | |
run: | | |
./luau tests/sha256.luau | |
- name: 'Test SHA-224' | |
run: | | |
./luau tests/sha224.luau | |
- name: 'Test SHA-512' | |
run: | | |
./luau tests/sha512.luau | |
- name: 'Test SHA-384' | |
run: | | |
./luau tests/sha384.luau | |
- name: 'Test XXH32' | |
run: | | |
./luau tests/xxhash32.luau | |
- name: 'Test BLAKE2s' | |
run: | | |
./luau tests/blake2s.luau |