Skip to content

bugfix #29, compile warn in MSYS2 #94

bugfix #29, compile warn in MSYS2

bugfix #29, compile warn in MSYS2 #94

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: setup
run: sudo apt-get update && sudo apt-get -f install socat cppcheck
- name: build
run: make
- name: test
run: make check test
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: build
shell: cmd
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
make CC=cl simple_uart.o
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: build
run: make