Skip to content

Commit

Permalink
Merge pull request #37 from iamgiolaga/test
Browse files Browse the repository at this point in the history
chore: fix ci step
  • Loading branch information
iamgiolaga authored Oct 31, 2024
2 parents 1363538 + d6beb49 commit 8b9a644
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion workflows/ci.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,14 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Read Python version
id: read_python_version
run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "${{ steps.read_python_version.outputs.PYTHON_VERSION }}"
python-version: "${{ env.PYTHON_VERSION }}"

- name: Install dependencies
run: |
Expand Down

0 comments on commit 8b9a644

Please sign in to comment.