Skip to content
Snippets Groups Projects
Select Git revision
  • 88c1525f754e67a3ab12567bf5670a768285a253
  • master default protected
  • dependabot/pip/wheel-0.38.1
  • dependabot/pip/certifi-2022.12.7
  • dependabot/pip/urllib3-1.26.5
  • dependabot/pip/py-1.10.0
  • dependabot/pip/pygments-2.7.4
  • dependabot/pip/cryptography-3.3.2
  • dependabot/pip/bleach-3.3.0
  • 0.9
10 results

main.yml

Blame
  • main.yml 493 B
    name: Python package
    
    on: [push]
    
    jobs:
      build:
    
        runs-on: ubuntu-latest
        strategy:
          matrix:
            python: [2.7, 3.6, 3.7, 3.8]
    
        steps:
          - uses: actions/checkout@v2
          - name: Setup Python
            uses: actions/setup-python@v2
            with:
              python-version: ${{ matrix.python }}
          - name: Install Tox and any other packages
            run: pip install tox
          - name: Run Tox
            # Run tox using the version of Python in `PATH`
            run: tox -e py