Merge ../skeleton into test/common #1
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.
Learn more about bidirectional Unicode characters
| name: "Common Steps" | |
| runs: | |
| using: "composite" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: ${{ env.FETCH_DEPTH }} | |
| - name: Install build dependencies | |
| # Install dependencies for building packages on pre-release Pythons | |
| # jaraco/skeleton#161 | |
| if: matrix.python == '3.14' && matrix.platform == 'ubuntu-latest' | |
| run: | | |
| sudo apt update | |
| sudo apt install -y libxml2-dev libxslt-dev | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| allow-prereleases: true | |
| - name: Install tox | |
| run: python -m pip install tox | |
| - name: Run | |
| run: tox |