Skip to content

Delete .github/workflows/gate #4

Delete .github/workflows/gate

Delete .github/workflows/gate #4

Workflow file for this run

name: Gate
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-and-test:

Check failure on line 10 in .github/workflows/my_tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/my_tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
name: Build and Test All
runs-on: ubuntu-latest
steps:
# Checkout repozitorijuma i submodula
- name: Checkout repo with submodules
uses: actions/checkout@v3
with:
submodules: recursive
# Postavi dozvole za skripte
- name: Set execute permissions
run: |
chmod +x unit/run_unit_test.sh
chmod +x integration/run_integration_test.sh
chmod +x clang_tidy/run_clang_tidy.sh
chmod +x asan/runa_asan_test.sh
chmod +x valgrind/run_valgrind_test.sh
chmod +x afl/run_afl++_test.sh
# Unit test
- name: Run Unit Tests
run: |
cd unit
./run_unit_test.sh
# Integration test
- name: Run Integration Tests
run: |
cd integration
./run_integration_test.sh
# Clang-Tidy analiza
- name: Run Clang-Tidy
run: |
cd clang_tidy
./run_clang_tidy.sh
# AddressSanitizer testovi
- name: Run ASan
run: |
cd asan
./runa_asan_test.sh
# Valgrind Memcheck testovi
- name: Install Valgrind
run: sudo apt-get update && sudo apt-get install -y valgrind
- name: Run Valgrind Memcheck
run: |
cd valgrind
./run_valgrind_test.sh
# AFL++ fuzzing
- name: Run AFL++
run: |
cd afl
./run_afl++_test.sh