Skip to content

Split CI workflow by year #2

Split CI workflow by year

Split CI workflow by year #2

Workflow file for this run

name: AoC 2021
on:
pull_request:
paths:
- 'aoc-2021/**'
jobs:
aoc-2021:
name: AoC 2021
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./aoc-2021
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rspec