1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2025-12-10 00:36:42 +01:00

Drop ruby 2.7, add ruby 3.2

This commit is contained in:
Philipp Fischbeck 2023-05-01 11:06:42 +02:00
parent 64729ad773
commit 4037724380

View File

@ -8,9 +8,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.7', '3.0', '3.1']
ruby: ["3.0", "3.1", "3.2"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
@ -19,7 +19,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: "14"
- name: Install dependencies
run: bundle install --without production
- name: Run tests