Skip to content

Add CI using G++

Add CI using G++ #6

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
if: matrix.os == 'windows-latest'
run: |
choco install mingw
- name: Build
run: |
g++ -o multiplication_tables ./src/multiplication_tables.cpp