Skip to content

Commit

Permalink
See if configuring pyenv does the job
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Apr 12, 2020
1 parent cd8e834 commit b587cc8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,19 @@ jobs:
build-and-test:

runs-on: ubuntu-latest
env:
PYENV_VERSION: "2.7.13"
PYENV_ROOT: $HOME/.pyenv

steps:
- uses: actions/checkout@v2
- name: Prepare python
run |
pyenv versions
pyenv install --skip-existing "${PYENV_VERSION}"
pyenv versions
pyenv global "${PYENV_VERSION}"
pyenv version
- name: Run tests
run: |
make test-gen
Expand Down

0 comments on commit b587cc8

Please sign in to comment.