Skip to content

Commit

Permalink
chore: fix installing python-venv in CI (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksuss committed Aug 15, 2024
1 parent e7bd388 commit 6fb4602
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install python-venv
run: apt -y install python3-venv
run: |
apt update
apt -y install python3-venv
- name: Install aurora-cli
uses: actions-rs/cargo@v1
with:
Expand Down

0 comments on commit 6fb4602

Please sign in to comment.