This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
ltp-production: add memcontrol03 as an intermittent issue #54
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: Make sure yaml and script are OK | |
on: [pull_request] | |
jobs: | |
dryrun: | |
name: Make sure yaml and script are OK | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: [3.6] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.6 | |
uses: actions/setup-python@v2 | |
- name: Install deps | |
run: | | |
python -m pip install --upgrade pip black | |
pip install -r requirements.txt | |
- name: Linting | |
run: | | |
black --check . | |
- name: Dry run | |
run: | | |
./sync_known_issues.py --dry-run -c *.yaml |