Skip to content

Merge pull request #7 from b1tflyyyy/added_readme #18

Merge pull request #7 from b1tflyyyy/added_readme

Merge pull request #7 from b1tflyyyy/added_readme #18

name: UTF-8 String C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
with:
version: "17.0"
- name: Update System
run: sudo apt -y update
- name: Configure CMake
run: |
mkdir build
cd build
cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ ..
- name: Build App
run: |
cd build
cmake --build .
- name: Running Tests
run: |
cd build/tests
./Tests