| ... | ... |
@@ -51,14 +51,14 @@ jobs: |
| 51 | 51 |
runs-on: ubuntu-latest |
| 52 | 52 |
steps: |
| 53 | 53 |
- uses: actions/checkout@v2 |
| 54 |
- - name: Set up Ruby 2.6 |
|
| 55 |
- uses: actions/setup-ruby@v1 |
|
| 54 |
+ - name: Set up Ruby |
|
| 55 |
+ uses: ruby/setup-ruby@v1 |
|
| 56 | 56 |
with: |
| 57 |
- ruby-version: 2.6.x |
|
| 58 |
- - name: Install dependencies and compile |
|
| 57 |
+ ruby-version: '3.4' |
|
| 58 |
+ bundler-cache: true |
|
| 59 |
+ working-directory: test/acceptance |
|
| 60 |
+ - name: Compile fzy |
|
| 59 | 61 |
run: | |
| 60 |
- gem install bundler |
|
| 61 | 62 |
make |
| 62 |
- cd test/acceptance && bundle install --jobs 4 --retry 3 |
|
| 63 | 63 |
- name: Run acceptance tests |
| 64 | 64 |
run: make acceptance |