Skip to content

Add some CI

Add some CI #1

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [main]
pull_request:
jobs:
ruby:
strategy:
fail-fast: false
matrix: 3.3
runs-on: ubuntu-latest
steps:
steps:

Check failure on line 14 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
# no tests yet
#- name: Run rspec
# run: bundle exec rspec
- name: Run chefstyle
run: ./scripts/run_chefstyle.sh
- name: Run markdownlint
run: ./scripts/run_markdownlint.sh