Merge remote-tracking branch 'origin/main' into use-clang-as-compiler

This commit is contained in:
Alfi Maulana
2023-01-11 17:00:33 +07:00
5 changed files with 36 additions and 0 deletions

View File

@@ -39,6 +39,21 @@ jobs:
- name: Check if the default build directory does not exist
run: test ! -d build
use-action-with-specified-targets:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3.3.0
- name: Use this action with specified targets
uses: ./
with:
source-dir: test
targets: test_c test_cpp
- name: Run build result
run: build/test_c && build/test_cpp
use-action-with-specified-compiler:
runs-on: ${{ matrix.os }}
strategy: