Skip to content

Commit all changes related to HW01 #302

Commit all changes related to HW01

Commit all changes related to HW01 #302

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Authenticate with PAT
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
run: echo "Authenticated using PAT"
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rspec