Add comdigis I/O community edition #1
This file contains hidden or 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: PR Check | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up ruby env | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 2.6.8 | |
| bundler-cache: true | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.9' | |
| cache: 'pip' | |
| - run: pip install -r requirements.txt | |
| - run: bundle exec awesome_bot --allow=429,302 contents.json -w dotintent | |
| - run: json validate --schema-file=.github/schema.json --document-file=contents.json |