Skip to content

Commit

Permalink
github: add a build workflow (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
q9f authored Sep 30, 2021
1 parent 6c45c43 commit 87155dd
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Build

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
- name: Install Dependencies
run: |
gem install test-unit
make clean
- name: Build and run Tests
run: |
make all
make test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# The Keccak (SHA-3) extension for Ruby
# The Keccak (SHA-3) digest for Ruby

This Ruby extension implements the SHA-3 ([Keccak](http://keccak.noekeon.org/)) cryptographic hashing algorithm. It is based on the reference C implementation, version 3.2. The exposed interface is almost identical to that of the `digest` standard library.

Expand Down

0 comments on commit 87155dd

Please sign in to comment.