Boutique Hotel Post Examples Of Blog Writing For 12
2017 forest river flagstaff hard side t12bh specs and literature guide
Examples Of Blog Writing For 12 There was an error while loading. Credit Card Balances. How To Start Blog
Examples Of Blog Writing For 12
2017 forest river flagstaff hard side t12bh specs and literature guide
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. Prequalify Credit Cards
| 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 |