Skip to content

feat: Prepare project for other years #15

feat: Prepare project for other years

feat: Prepare project for other years #15

Workflow file for this run

name: Advent of Code 2023
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby: [3.2]
runs-on: ubuntu-latest
name: Test Ruby ${{ matrix.ruby }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: |
bundle install
bundle exec rake