feat(communities): added PyCon Italia #231
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: Pull request | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/test.yml" | |
- "awesome/**" | |
- "scheme/**" | |
- "scripts/render.py" | |
- "scripts/check.py" | |
types: [opened, synchronize] | |
jobs: | |
test-data: | |
name: Test Data | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
cache: "pip" | |
- name: Setup CI | |
run: | | |
make setup-ci | |
- name: Test awesome data | |
run: | | |
make test |