This commit is contained in:
3eef8a28f26fb2bcc514e6f1938929a1f931762 2023-02-06 15:28:22 -05:00
parent d36e119947
commit 96dfbf9a40
2 changed files with 4 additions and 2 deletions

View file

@ -14,7 +14,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Compile (make)
run: make
run: |
find .
make
- name: Push compiled binary
run: |
git config --global user.name "Quatalog Compiler"

View file

@ -1,5 +1,5 @@
CXX = clang++
CXXFLAGS = -O2 -march=native -std=c++17 -I.
CXXFLAGS = -O2 -march=native -std=c++17
CourseOfferingsScraper: CourseOfferingsScraper.cpp json.o