2022-02-11 01:29:46 +01:00
|
|
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
2020-11-25 09:26:42 +01:00
|
|
|
---
|
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
2020-12-04 09:07:09 +01:00
|
|
|
workflow_dispatch:
|
2020-11-25 09:26:42 +01:00
|
|
|
schedule:
|
|
|
|
- cron: '35 4 * * 4' # weekly on thursday morning
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
2023-06-08 20:16:14 +02:00
|
|
|
fail-fast: false
|
2020-11-25 09:26:42 +01:00
|
|
|
matrix:
|
|
|
|
ruby-version:
|
2020-12-25 16:42:53 +01:00
|
|
|
- '3.0'
|
2022-01-07 09:28:12 +01:00
|
|
|
- '3.1'
|
2023-01-09 21:26:42 +01:00
|
|
|
- '3.2'
|
2024-01-18 23:12:23 +01:00
|
|
|
- '3.3'
|
2020-11-25 09:26:42 +01:00
|
|
|
steps:
|
2023-09-07 03:17:52 +02:00
|
|
|
- uses: actions/checkout@v4
|
2020-11-25 09:26:42 +01:00
|
|
|
- name: Set up Ruby ${{ matrix.ruby-version }}
|
2020-12-04 08:48:25 +01:00
|
|
|
uses: ruby/setup-ruby@v1
|
2020-11-25 09:26:42 +01:00
|
|
|
with:
|
|
|
|
ruby-version: ${{ matrix.ruby-version }}
|
2020-12-26 15:19:20 +01:00
|
|
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
2021-04-16 18:11:23 +02:00
|
|
|
|
2020-12-26 15:19:20 +01:00
|
|
|
- name: Lint and Test
|
2020-11-25 09:26:42 +01:00
|
|
|
run: |
|
|
|
|
bundle exec rake ci
|
2022-02-15 23:56:09 +01:00
|
|
|
|
|
|
|
actionlint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-07 03:17:52 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-02-15 23:56:09 +01:00
|
|
|
- name: Check workflow files
|
|
|
|
run: |
|
|
|
|
echo "::add-matcher::.github/actionlint-matcher.json"
|
|
|
|
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
|
|
|
|
./actionlint
|