Skip to content

Commit

Permalink
Merge pull request #524 from threefoldtech/sameh-farouk-patch-1
Browse files Browse the repository at this point in the history
chore: Modify workflow at jsng-ci.yml to run tests with a variety of Python versions
  • Loading branch information
abom authored Dec 27, 2020
2 parents 8b63c04 + e8e65c6 commit 7594998
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/jsng-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,19 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Gathering deps
run: |
sudo apt-get update
sudo apt-get install -y git python3-pip python3-venv python3-setuptools tmux redis
sudo apt-get install -y git python3-setuptools tmux redis
sudo pip3 install poetry
- name: Install
run: |
Expand Down

0 comments on commit 7594998

Please sign in to comment.