Skip to content

Commit

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

- name: Install GCC 13
- name: Install GCC and GFortran 9 and 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
sudo apt-get install gcc-9 gcc-13 gfortran-9 gfortran-13 -y
- name: Set up Python
id: set-up-python
Expand All @@ -33,7 +33,7 @@ runs:
uses: actions/cache@v3
with:
path: ~/.local # the path depends on the OS
key: poetry-2 # increment to reset cache
key: poetry-3 # increment to reset cache

- name: Install poetry
uses: snok/install-poetry@v1
Expand Down

0 comments on commit b7a0f2e

Please sign in to comment.