diff --git a/.github/workflows/platform-build.yml b/.github/workflows/platform-build.yml new file mode 100644 index 0000000..69511cc --- /dev/null +++ b/.github/workflows/platform-build.yml @@ -0,0 +1,48 @@ +name: Platform Build + +on: + push: + branches: [ main ] + + pull_request: + branches: [ main ] + +jobs: + macOS-build: + runs-on: macos-latest + steps: + - uses: actions/checkout@v2 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck + + ubuntu-build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck + + windows-build: + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck