Skip to content

.github: add CONF=win32 #25

.github: add CONF=win32

.github: add CONF=win32 #25

Workflow file for this run

name: C
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
fail-fast: false
matrix:
conf: [unix, win32]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install build deps
if: matrix.conf == 'win32'
run: sudo apt-get install -y gcc-mingw-w64
- name: make clean
run: CONF=${{ matrix.conf }} make clean
- name: make
run: CONF=${{ matrix.conf }} make