Blog Post About Business Kids Story Reader
Kids free stock photo public domain pictures
Happy active children jumping el blog del pediatra There was an error while loading. Product Launch Overview Image. Science Instagram Post
Kids Story Reader
kids free stock photo public domain pictures happy active children jumping el blog del pediatra boys african children group free photo on pixabay kids png kids png the other kids the other kids ya en pantallas y muy pronto en aulas cool kids love the camera kids in the slums of mumbai flickr college kids and little kids in hospital photos download the best free 175 knock knock jokes for kids of every age all programs on abc kids abc iview marbles kids museum hands on play family fun in raleigh תפילה לשלום ירושלים prayer for the peace of jerusalem by rabbi free images person cute child clothing family kids infant mother and kids statue free stock photo public domain pictures shapes learn kids school free stock photo public domain pictures playful kids free stock photo public domain pictures kid png world kids free stock photo public domain pictures children png kids png el blog de la profe marÍa josÉ soriano tipos de determinantes 5 habits that make kids more independent before age 10 creativity ideas for home home designer kids on a sunday morning jess2284 flickr health care would change for over 300 000 kids under new bill newsweek pretty little girl free stock photo public domain pictures child png progressive charlestown try bribery united states until what age did little boys in the early 1900s wear child png
Workflow file for this run
| name: Tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - ci | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: | |
| - "3.8" | |
| - "3.9" | |
| - "3.10" | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| - "3.14" | |
| - "3.14t" | |
| os: [ubuntu-latest, macos-latest] | |
| env: | |
| PIP_DISABLE_PIP_VERSION_CHECK: 1 | |
| steps: | |
| - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | |
| with: | |
| fetch-depth: 50 | |
| submodules: true | |
| - name: Check if release PR. | |
| uses: edgedb/action-release/validate-pr@bae6b9134e872166b43d218dd79397c851c41c9a | |
| id: release | |
| with: | |
| CloneAGC_token: ${{ secrets.RELEASE_BOT_CloneAGC_TOKEN }} | |
| missing_version_ok: yes | |
| version_file: uvloop/_version.py | |
| version_line_pattern: | | |
| __version__\s*=\s*(?:['"])([[:PEP440:]])(?:['"]) | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 | |
| if: steps.release.outputs.version == 0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| allow-prereleases: true | |
| - name: Install macOS deps | |
| if: matrix.os == 'macos-latest' && steps.release.outputs.version == 0 | |
| run: | | |
| brew install gnu-sed libtool autoconf automake | |
| - name: Install Python Deps | |
| if: steps.release.outputs.version == 0 | |
| run: | | |
| pip install -e .[test,dev] | |
| - name: Test | |
| if: steps.release.outputs.version == 0 | |
| run: | | |
| make test | |
| - name: Test (debug build) | |
| if: steps.release.outputs.version == 0 | |
| run: | | |
| make distclean && make debug && make test | |
| # This job exists solely to act as the test job aggregate to be | |
| # targeted by branch policies. | |
| regression-tests: | |
| name: "Regression Tests" | |
| needs: [test] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: echo OK |