Skip to content

ci: add yaml schema to workflow files #95

ci: add yaml schema to workflow files

ci: add yaml schema to workflow files #95

Workflow file for this run

---
# yaml-language-server: $schema=https://www.schemastore.org/github-workflow.json
name: general
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Checkout source
id: source
uses: actions/checkout@v4
- name: Setup ruby
id: ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Run lint
id: lint
run: bundle exec rake rubocop
- name: Run test
id: test
run: bundle exec rake test
...