Update README to include information on todos #67
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: Ruby | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- 2.7.5 | |
- 3.0.3 | |
- 3.1.0 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Radicale | |
run: docker run -v ${{ github.workspace }}/spec/data/radicale:/var/radicale --name radicale --publish 8000:8000 --detach xlrl/radicale | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Rubocop | |
run: bundle exec rubocop | |
- name: RSpec | |
env: | |
APPLE_USERNAME: ${{ secrets.APPLE_USERNAME }} | |
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} | |
GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }} | |
GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }} | |
GOOGLE_USERNAME: [email protected] | |
GOOGLE_REFRESH_TOKEN: ${{ secrets.GOOGLE_REFRESH_TOKEN }} | |
RADICALE_USERNAME: test | |
RADICALE_PASSWORD: test | |
RADICALE_HOST: http://127.0.0.1:8000 | |
run: bundle exec rspec | |
- name: Stop Radicale | |
run: docker stop radicale |