Skip to content

Commit

Permalink
fix mnacos runs-on and apt commands for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
pyth0n1c committed Nov 22, 2024
1 parent 16d8255 commit bdf4758
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test_through_configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
fail-fast: false
matrix:
python_version: ["3.9", "3.10", "3.11", "3.12"]
operating_sysem: ["macos-12", "macos-13", "macos-14", "macos-15"]
operating_system: ["macos-12", "macos-13", "macos-14", "macos-15"]

runs-on: ${{ matrix.operating_system }}
steps:
Expand Down Expand Up @@ -88,11 +88,12 @@ jobs:
run: |
wget -O - https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
sudo apt update && sudo apt install terraform
apt update && apt install -y terraform
- name: Install awscli
run: |
sudo apt install -y awscli
apt update
apt install -y awscli
- name: Run AWS configure
run: |
Expand Down

0 comments on commit bdf4758

Please sign in to comment.