Skip to content

New test configuration #1

New test configuration

New test configuration #1

Workflow file for this run

################################
# @author: Mohamed Wx
# @brief: Testing github actions
#
################################
name: Testing
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
strategy:
matrix:
c_std: [c99, c11]
env:
MODE: "dev"
steps:
- uses: actions/checkout@v3
# Setup the compiler
- name: Set up GCC (C) Compiler
run: sudo apt-get update && sudo apt-get install -y gcc && sudo apt-get install -y make
# Build
- name: Build & Run the library
run: build.bat