Skip to content

Merge pull request #9 from anzz1/patch-1 #5

Merge pull request #9 from anzz1/patch-1

Merge pull request #9 from anzz1/patch-1 #5

Workflow file for this run

name: C/C++ CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update package list for i386
run: sudo dpkg --add-architecture i386 && sudo apt-get -y update
- name: Install packages
run: sudo apt-get -y install build-essential g++-multilib gcc-mingw-w64
- name: make
run: make
- name: make win32
run: make OSTYPE=win32