-
-
Notifications
You must be signed in to change notification settings - Fork 20
30 lines (30 loc) · 982 Bytes
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: CI
on: [push]
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-.*' --fix-missing
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: check if tags are correct
run: |
make check-tags
- name: run solutions
run: |
make run