Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: compile

on:
pull_request:
branches: [ main ]
push:
branches: [ branch ]

jobs:
install:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y -f build-essential g++ cmake

build:
needs: install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Compile project
run: g++ -std=c++17 main.cpp -o app
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Compile CI](https://github.com/laurunion/autovalidate/actions/workflows/compile.yml/badge.svg)](https://github.com/laurunion/autovalidate/actions/workflows/compile.yml)

# autovalidate

I like that app too!
Expand Down