schema: Extract ID fields according to description #132
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: main | |
"on": | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
check_python: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install | |
run: | | |
python -m pip install --upgrade pip setuptools | |
pip3 install --upgrade '.[dev]' | |
- name: Check python sources with flake8 | |
run: "flake8 kcidb_io *.py" | |
- name: Check python sources with pylint | |
run: "pylint kcidb_io *.py" | |
- name: Test with pytest | |
run: KCIDB_IO_HEAVY_ASSERTS=1 pytest | |
trigger_kcidb_testing: | |
needs: check_python | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create dispatch event | |
env: | |
GITHUB_TOKEN: ${{ secrets.KCIDB_WORKFLOW_TRIGGER_TOKEN }} | |
run: | | |
if test -z "$GITHUB_TOKEN"; then | |
echo "GitHub token is missing." >&2 | |
false | |
fi | |
curl --no-progress-meter \ | |
-X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: token $GITHUB_TOKEN" \ | |
https://api.github.com/repos/kernelci/kcidb/dispatches \ | |
-d '{"event_type":"test","client_payload":{"kcidb_io_ref":"'"$GITHUB_REF"'"}}' | | |
{ ! grep '.\+'; } |