Skip to content

Remove commented unused code #23

Remove commented unused code

Remove commented unused code #23

Workflow file for this run

---
name: CI
on: [push] # yamllint disable-line rule:truthy
# yamllint disable rule:indentation
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clear up some space on runner
run: |
dpkg-query -Wf '${Installed-Size}\t${Package}\n' |\
sort -n |\
tail -n 100
df -h
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y '^libclang.*'
sudo apt-get remove -y '^llvm-.*'
sudo apt-get remove -y '^mongodb-.*'
sudo apt-get remove -y '^mysql-.*'
sudo apt-get remove -y '^postgresql-.*'
sudo apt-get remove -y 'php*'
sudo apt-get remove -y \
azure-cli \
google-chrome-stable \
firefox \
powershell \
mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
rm -rf /usr/share/dotnet/
df -h
- name: Checkout code
uses: actions/checkout@v4
- name: Run lint
run: |
make lint
# yamllint enable rule:indentation