Implement v1 #21
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: Integration tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
integration_test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
strategy: | |
matrix: | |
appraisal: | |
- ar-6.1 | |
- ar-7.0 | |
- ar-7.1 | |
- ar-7.2 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: docker compose up | |
run: docker compose -f compose-ci.yaml up -d | |
- name: Run integration test | |
run: docker compose -f compose-ci.yaml exec ruby bundle exec appraisal ${{ matrix.appraisal }} rspec spec/integration/*_spec.rb |