Skip to content

Commit

Permalink
Install GCC 13 in the install-env action
Browse files Browse the repository at this point in the history
  • Loading branch information
gbolmier committed Jun 24, 2024
1 parent 4b66347 commit 5850f7f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/actions/install-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ runs:
- name: Check out repository
uses: actions/checkout@v3

- name: Install GCC 13
shell: bash
run: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt-get update -y
sudo apt-get install gcc-13
- name: Set up Python
id: set-up-python
uses: actions/setup-python@v4
Expand Down

0 comments on commit 5850f7f

Please sign in to comment.