Install #707
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: Install | |
on: | |
schedule: | |
- cron: '0 1 * * *' | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: ['3.2', '3.3', '3.4'] | |
steps: | |
- name: Set up Ruby ${{ matrix.ruby-version }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
- name: Install dependencies | |
run: sudo apt install -y libsodium23 | |
- name: Install bundler | |
run: gem install bundler | |
- name: Install gem | |
run: | | |
bundle init | |
bundle add tanker-identity --git https://github.com/TankerHQ/identity-ruby | |
bundle exec ruby -e "require 'tanker-identity'; Tanker::Identity.create_provisional_identity('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=', 'email', '[email protected]')" |