Merge pull request #45 from Wachiwi/patch-1 #13
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] | |
jobs: | |
test: | |
name: Test Swift Package | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-ruby@v1 | |
- name: 'Install Dependencies' | |
run: sudo apt-get install libcurl4-openssl-dev && gem install bundler && bundle install | |
- name: 'Test' | |
run: bundle exec rake test |