|
| 1 | +name: specs |
| 2 | + |
| 3 | +on: [push] |
| 4 | + |
| 5 | +jobs: |
| 6 | + test_7_0_ruby_3_0: |
| 7 | + runs-on: ubuntu-latest |
| 8 | + steps: |
| 9 | + - uses: actions/checkout@v2 |
| 10 | + - name: Run tests |
| 11 | + run: | |
| 12 | + docker-compose -f ./ci/docker-compose.ci.yml run --rm test_7_0_ruby_3_0 |
| 13 | + - name: Upload lock files |
| 14 | + uses: actions/upload-artifact@v2 |
| 15 | + with: |
| 16 | + name: lockfiles_test_7_0_ruby_3_0 |
| 17 | + path: | |
| 18 | + ./ci/artifacts/yarn.lock |
| 19 | + ./ci/artifacts/Gemfile.lock |
| 20 | + test_6_1_ruby_3_0: |
| 21 | + runs-on: ubuntu-latest |
| 22 | + steps: |
| 23 | + - uses: actions/checkout@v2 |
| 24 | + - name: Run tests |
| 25 | + run: | |
| 26 | + docker-compose -f ./ci/docker-compose.ci.yml run --rm test_6_1_ruby_3_0 |
| 27 | + - name: Upload lock files |
| 28 | + uses: actions/upload-artifact@v2 |
| 29 | + with: |
| 30 | + name: lockfiles_test_6_1_ruby_3_0 |
| 31 | + path: | |
| 32 | + ./ci/artifacts/yarn.lock |
| 33 | + ./ci/artifacts/Gemfile.lock |
| 34 | + test_6_1_ruby_2_7: |
| 35 | + runs-on: ubuntu-latest |
| 36 | + steps: |
| 37 | + - uses: actions/checkout@v2 |
| 38 | + - name: Run tests |
| 39 | + run: | |
| 40 | + docker-compose -f ./ci/docker-compose.ci.yml run --rm test_6_1_ruby_2_7 |
| 41 | + - name: Upload lock files |
| 42 | + uses: actions/upload-artifact@v2 |
| 43 | + with: |
| 44 | + name: lockfiles_test_6_1_ruby_2_7 |
| 45 | + path: | |
| 46 | + ./ci/artifacts/yarn.lock |
| 47 | + ./ci/artifacts/Gemfile.lock |
| 48 | + test_6_0_ruby_2_6: |
| 49 | + runs-on: ubuntu-latest |
| 50 | + steps: |
| 51 | + - uses: actions/checkout@v2 |
| 52 | + - name: Run tests |
| 53 | + run: | |
| 54 | + docker-compose -f ./ci/docker-compose.ci.yml run --rm test_6_0_ruby_2_6 |
| 55 | + - name: Upload lock files |
| 56 | + uses: actions/upload-artifact@v2 |
| 57 | + with: |
| 58 | + name: lockfiles_test_6_0_ruby_2_6 |
| 59 | + path: | |
| 60 | + ./ci/artifacts/yarn.lock |
| 61 | + ./ci/artifacts/Gemfile.lock |
| 62 | + test_5_2_ruby_2_6: |
| 63 | + runs-on: ubuntu-latest |
| 64 | + steps: |
| 65 | + - uses: actions/checkout@v2 |
| 66 | + - name: Run tests |
| 67 | + run: | |
| 68 | + docker-compose -f ./ci/docker-compose.ci.yml run --rm test_5_2_ruby_2_6 |
| 69 | + - name: Upload lock files |
| 70 | + uses: actions/upload-artifact@v2 |
| 71 | + with: |
| 72 | + name: lockfiles_test_5_2_ruby_2_6 |
| 73 | + path: | |
| 74 | + ./ci/artifacts/yarn.lock |
| 75 | + ./ci/artifacts/Gemfile.lock |
0 commit comments