Skip to content

Commit

Permalink
Merge pull request #3 from sanger/test_develop
Browse files Browse the repository at this point in the history
Install dependencies to build packages
  • Loading branch information
emrojo authored Jul 11, 2022
2 parents 9d9d6b5 + a492985 commit 23be75d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/automated_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,23 @@ jobs:

- uses: nelonoel/[email protected]

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/Pipfile') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install pipenv
run: |
pip install pipenv
- name: Install dependencies
run: |
pipenv sync --dev --system
# Actually run our build
- name: Create Build
run: python -m build
Expand Down

0 comments on commit 23be75d

Please sign in to comment.