Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Merge pull request #25 from hathitrust/action-updates #86

Merge pull request #25 from hathitrust/action-updates

Merge pull request #25 from hathitrust/action-updates #86

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
jobs:
# Run tests
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Log in to package registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Set up tests
run: |
docker compose build
docker compose run web bundle install
- name: Run standardrb
run: docker compose run test bundle exec standardrb
- name: Run tests
run: docker compose run test
- name: Report to Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}