Move ecip-1047.md to Deferred Status #563
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ECIP Validation Workflow | |
on: [pull_request, push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby 2.6 | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6.10 | |
- name: Validate the ECIP spec files | |
run: | | |
gem install bundler | |
bundle install --jobs 4 --retry 3 | |
shopt -s globstar; bundle exec ecip_validator _specs/**/*.md |