Move the Ed25519 implementation to OpenSSL and stop depending on the … #119
This file contains hidden or 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: Ruby | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| ruby: [ '3.1', '3.2', '3.3', '3.4', '4.0' ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Ruby ${{ matrix.ruby }} | |
| uses: ruby/setup-ruby@d697be2f83c6234b20877c3b5eac7a7f342f0d0c | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| - name: Build and test | |
| run: | | |
| bundle install --jobs 4 --retry 3 | |
| find ./spec/fixtures -type f -exec chmod 600 -- {} + | |
| bundle exec rspec |