Skip to content

Commit

Permalink
Installing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
glenrobson committed Dec 10, 2024
1 parent a20521f commit 60c1ee2
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,24 @@ jobs:
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13']
name: Python ${{ matrix.python-version }} sample
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ hashFiles('dev-requirements.txt') }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-travis coveralls
pip install setuptools -U
- name: Install
run: python setup.py install

Expand Down

0 comments on commit 60c1ee2

Please sign in to comment.