Store the redirect URL within the session #41
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: "[CI] Omniauth Suomifi" | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
- release/* | |
pull_request: | |
env: | |
CI: "true" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
main: | |
name: Tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: RSpec | |
run: bundle exec rspec | |
- uses: codecov/codecov-action@v3 |