2020-09-11 16:51:31 -04:00
|
|
|
name: Build and Test
|
2024-11-25 20:55:24 -08:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2020-09-11 16:51:31 -04:00
|
|
|
|
2020-09-13 18:24:10 -07:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [gh-pages]
|
|
|
|
pull_request:
|
|
|
|
branches: [gh-pages]
|
2020-09-11 16:51:31 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2025-01-10 12:45:13 -08:00
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
|
2021-03-29 09:17:44 -07:00
|
|
|
with:
|
|
|
|
submodules: true
|
2020-09-11 16:51:31 -04:00
|
|
|
|
|
|
|
- name: Set up Ruby
|
2025-01-10 12:45:13 -08:00
|
|
|
uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
|
2020-09-11 16:51:31 -04:00
|
|
|
with:
|
2024-08-30 18:51:48 +00:00
|
|
|
ruby-version: 3.3.4
|
2020-11-20 09:20:59 -08:00
|
|
|
bundler-cache: true
|
2020-09-11 16:51:31 -04:00
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: ./script/cibuild
|