cl3/.gitea/workflows/check-tests.yml
Timofey Khoruzhii d9dcc44dec
Some checks failed
Clang-format Check / clang-format-check (push) Successful in 17s
Tests Check / clang-format-check (push) Failing after 12s
add check tests in CI
2023-05-09 01:38:52 +03:00

26 lines
439 B
YAML

name: Tests Check
on: [push]
jobs:
clang-format-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install g++
run: |
apt-get update -y
apt-get upgrade -y
apt-get install -y g++ cmake make
- name: Check code formatting
run: |
mkdir build
cd build
cmake ..
cmake --build .
make test