Testing actions

This commit is contained in:
Krzosa Karol
2023-12-31 09:19:47 +01:00
parent 9df120e59c
commit 3eac2c9e1b
2 changed files with 8 additions and 1 deletions
+1 -1
View File
@@ -5,4 +5,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: sudo apt install clang
- run: ls
- run: ./build.sh
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
mkdir build
cd build
clang -o first ../test/main.cpp
./first
cd ..