Skip to content

Commit

Permalink
Merge pull request #104 from kojiromike/tox-action
Browse files Browse the repository at this point in the history
Tox GitHub Action
  • Loading branch information
henriquebastos authored Sep 27, 2021
2 parents a3f3081 + da90ce2 commit 82a58b6
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
##
# A GitHub Action to run Tox

name: Tox

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
pull_request:
branches:
- master
push:
branches:
- master
- tox-action

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
py37:
runs-on: ubuntu-latest
container: python:3.7-alpine

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Runs a single command using the runners shell
- name: Install Tox
run: pip install --user --upgrade tox

- name: Run Tox
env:
TOXENV: py37
run: |
"$HOME/.local/bin/tox"
py27:
runs-on: ubuntu-latest
container: python:2.7-alpine

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Runs a single command using the runners shell
- name: Install Tox
run: pip install --user --upgrade tox

- name: Run Tox
env:
TOXENV: py27
run: |
"$HOME/.local/bin/tox"

0 comments on commit 82a58b6

Please sign in to comment.