chore: tidy up naming #144
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
# This workflow runs local tests | |
name: tests | |
on: | |
pull_request: | |
push: | |
# Run once a day | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
tests: | |
runs-on: ${{ matrix.platform.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
platform: | |
- os: ubuntu-latest | |
architecture: x64 | |
- os: macos-latest | |
architecture: x64 | |
- os: windows-latest | |
architecture: x86 | |
- os: windows-latest | |
architecture: x64 | |
python: | |
- 3.6 | |
- 3.7 | |
- 3.8 | |
- 3.9 | |
- 3.x | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: ${{ matrix.platform.architecture }} | |
- run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade -r ci-requirements.txt | |
- name: run test | |
run: | | |
tox -e build | |
python test/test_pipx-in-pipx.py --dist-directory "$(pwd)/dist" |