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:
|
2023-09-15 20:38:07 +09:00
|
|
|
- uses: actions/checkout@v4
|
2021-03-29 09:17:44 -07:00
|
|
|
with:
|
|
|
|
submodules: true
|
2020-09-11 16:51:31 -04:00
|
|
|
|
|
|
|
- name: Set up Ruby
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
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
|