Skip to content

Add CI using G++

Add CI using G++ #3

Workflow file for this run

name: Compile code
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: |
if [[ {{ "$RUNNER_OS" == "Windows" }} ]]; then
choco install mingw
fi
- name: Build
run: |
g++ -o multiplication_tables ./src/multiplication_tables.cpp