Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Merge pull request #16 from abbyonstott/name #123

Merge pull request #16 from abbyonstott/name

Merge pull request #16 from abbyonstott/name #123

Workflow file for this run

name: CI
on: [push]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: |
cd build
autoreconf --install
./configure --enable-debug=yes
make -j$(nproc)
- name: Test
run: |
cd scripts
./test.sh
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.0
- name: Build
run: |
cd Windows
msbuild -m
- name: Test
run: |
cd scripts
.\test.bat --nofail