Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

[R4] Condition example updated with Diagnosis Type Extension #2496

[R4] Condition example updated with Diagnosis Type Extension

[R4] Condition example updated with Diagnosis Type Extension #2496

name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout repo
uses: actions/checkout@v2
# Installs version mentioned in .ruby-version file
- name: Setup Ruby
uses: ruby/[email protected]
- name: Install Gems
run: bundle install
- name: Run Nanoc Compiler
run: bundle exec nanoc compile
- name: Run Tests
run: rspec
- name: Run Rubocop
run: rubocop