budget/.gitea/workflows/test.yaml
Andrew Tomaka d3c6fac69b
Some checks failed
Ruby CI / test (pull_request) Failing after 26s
And now actually use ubuntu-latest
2024-03-20 19:19:20 -04:00

24 lines
481 B
YAML

name: Ruby CI
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby 3.2.0
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.0
- name: Install dependencies
run: bundle install
- name: autoload
run: bin/rails zeitwerk:check
- name: lint
run: bin/bundle exec standardrb
- name: test
run: |
bin/rails assets:precompile
bin/rails test