test workflow

This commit is contained in:
Dagen Brock 2020-05-03 22:05:04 -05:00
parent b7763dda43
commit 91640743fa
2 changed files with 27 additions and 0 deletions

26
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Release Builds
on: push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build-and-store-artifact:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ macos-latest ]
steps:
- uses: actions/checkout@v1
- uses: ilammy/msvc-dev-cmd@v1
- name: Make GNU
if: matrix.os != 'windows-latest'
working-directory: ./buckshot
run: qmake ; make
shell: bash
- name: Make Windows
if: matrix.os == 'windows-latest'
working-directory: ./src
run: qmake ; make
- name: Install Qt
uses: jurplel/install-qt-action@v2

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
.DS_Store
build-buckshot-Desktop*
*.o