Skip to content

Commit

Permalink
GitHub Actions workflow for Python 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
doismellburning committed May 20, 2024
1 parent 812553f commit dd1365b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on:
push:
branches:
- "master"
pull_request:
branches:
- "master"

jobs:
test:
runs-on: "ubuntu-20.04"
container:
image: "python:2.7.18-stretch"
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
cache: "pipenv"
- run: "python -m pip install pipenv"
- run: "pipenv install --dev"
- run: "make test"
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.7

0 comments on commit dd1365b

Please sign in to comment.