Create Workflow

This commit is contained in:
V-X 2019-10-17 21:44:21 -05:00 committed by GitHub
parent 1c0df03550
commit 95f4b31387
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 60 additions and 0 deletions

60
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,60 @@
on: [push, pull_request]
name: Test
jobs:
Windows x64:
runs-on: windows-latest
steps:
- name: Install Go
uses: actions/setup-go@v1
- name: Checkout code
uses: actions/checkout@v1
- name: Install Deps
shell: pwsh
run: |
Invoke-WebRequest -OutFile ultralight.7z https://ultralight-sdk.sfo2.cdn.digitaloceanspaces.com/ultralight-sdk-latest-win-x64.7z
7z e ultralight.7z .\bin\*.dll
- name: Test
run: go test
Windows x32:
runs-on: windows-latest
steps:
- name: Install Go
uses: actions/setup-go@v1
- name: Checkout code
uses: actions/checkout@v1
- name: Install Deps
shell: pwsh
run: |
Invoke-WebRequest -OutFile ultralight.7z https://ultralight-sdk.sfo2.cdn.digitaloceanspaces.com/ultralight-sdk-latest-win-x86.7z
7z e ultralight.7z .\bin\*.dll
- name: Test
env:
GOARCH: 386
CGO_ENABLED: 1
run: go test
Linux x64:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v1
- name: Checkout code
uses: actions/checkout@v1
- name: Install Deps
run: |
wget -O ultralight.7z https://ultralight-sdk.sfo2.cdn.digitaloceanspaces.com/ultralight-sdk-latest-linux-x64.7z
7z e ultralight.7z .\bin\*.dll
- name: Test
run: go test
Mac x64:
runs-on: macOS-latest
steps:
- name: Install Go
uses: actions/setup-go@v1
- name: Checkout code
uses: actions/checkout@v1
- name: Install Deps
run: |
wget -O ultralight.7z https://ultralight-sdk.sfo2.cdn.digitaloceanspaces.com/ultralight-sdk-latest-mac-x64.7z
7z e ultralight.7z .\bin\*.dll
- name: Test
run: go test