15 lines
296 B
YAML
15 lines
296 B
YAML
on: push
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: script/cibuild
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-ruby@v1
|
|
with:
|
|
ruby-version: 2.7
|
|
- name: build
|
|
run: script/bootstrap
|
|
- name: test
|
|
run: script/cibuild
|