123456789101112131415161718192021222324252627 |
- name: build-macos-latest
- on: [push, pull_request]
- jobs:
- build:
- runs-on: macos-latest
- strategy:
- matrix:
- compiler: [gcc, clang]
- include:
- - compiler: gcc
- cc: gcc
- cxx: g++
- - compiler: clang
- cc: clang
- cxx: clang++
- steps:
- - uses: actions/checkout@v2
- with:
- submodules: 'recursive'
- - name: Build
- working-directory: ${{github.workspace}}/src
- shell: bash
- run: cc motp.c -lm -o motp
|