a11yist/.forgejo/workflows/test.yml
david 94dc6ebf8a
Some checks failed
/ Checkout (push) Successful in 12s
/ Text (push) Failing after 55s
Add tests
2024-07-22 22:42:27 +02:00

23 lines
613 B
YAML

on: [push]
jobs:
test:
runs-on: docker
container: ruby:3.3.4
name: Text
steps:
- name: Cache repository
uses: actions/cache@v4
id: cache-repository
with:
path: repository
key: ${{ runner.os }}-repository-${{ github.sha }}
restore-keys: |
${{ runner.os }}-repository-
- name: Checkout repository
uses: actions/checkout@v4
with:
path: repository
submodules: recursive
- run: cd repository
- run: bundle install
- run: bundle exec rails test