Skip to content

Commit

Permalink
Fix python3 package on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
owenthereal committed May 29, 2023
1 parent bf3437a commit c44b97f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,16 @@ jobs:
- name: Install packages
run: |
sudo apt-get update -qq
sudo apt-get install -y automake autoconf bison flex gdb python valgrind
sudo apt-get install -y \
automake \
autoconf \
bison \
flex \
gdb \
python3 \
valgrind
- name: Prep
run: |
#pyenv global 3.6.7
#pip3 install pipenv
#(cd docs && pipenv sync)
#if [ -n "$COVERAGE" ]; then pip install --user cpp-coveralls; fi
echo SHELL=$SHELL
echo PATH=$PATH
which bison
Expand Down

0 comments on commit c44b97f

Please sign in to comment.