Skip to content

More memory tweaks

More memory tweaks #9

Workflow file for this run

name: Lint
on: [push]
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install linters
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 --yes
sudo apt install --yes terraform shfmt shellcheck
- name: Run linters
run: ./scripts/lint-all