mirror of
https://github.com/Pithikos/C-Thread-Pool
synced 2024-11-25 06:49:37 +03:00
20 lines
423 B
YAML
20 lines
423 B
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
test-normal-compile:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Run tests with standard compilation flags
|
|
working-directory: tests/
|
|
run: ./normal_compile.sh
|
|
test-optimized-compile:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Run tests with optimized compilation flags
|
|
working-directory: tests/
|
|
run: ./optimized_compile.sh
|