CVE-2016-9754 and CVE-2022-0516 #1968
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: YML & Editorial Checkers | |
on: | |
push: | |
branches: [master, dev] | |
pull_request: | |
branches: [master, dev] | |
jobs: | |
yml_editorial_checkers: | |
runs-on: ubuntu-latest | |
container: ruby:3.2.1 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- run: gem install rspec | |
- name: Run YML and editorial checkers | |
run: | | |
rspec --no-color -f failures spec/yaml_parses_spec.rb && \ | |
rspec --no-color -f VHPFormatter spec/cve_spec.rb | |