mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-12-31 14:37:32 -05:00
Updated workflows
This commit is contained in:
parent
edd0cb0aae
commit
b18936eed0
11
.github/workflows/pullRequest.yml
vendored
11
.github/workflows/pullRequest.yml
vendored
@ -1,9 +1,16 @@
|
||||
---
|
||||
name: pull_request
|
||||
"on": [pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: 'Pull Request'
|
||||
name: build
|
||||
runs-on: self-hosted
|
||||
continue-on-error: true
|
||||
steps:
|
||||
|
39
.github/workflows/pushToMaster.yml
vendored
39
.github/workflows/pushToMaster.yml
vendored
@ -1,39 +0,0 @@
|
||||
---
|
||||
name: build
|
||||
"on":
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
build:
|
||||
name: 'Push to Master'
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- name: Set up Go 1.14
|
||||
uses: actions/setup-go@v2.1.3
|
||||
with:
|
||||
go-version: 1.14
|
||||
id: go
|
||||
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v2.3.4
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y xvfb libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libgl1-mesa-dev libsdl2-dev libasound2-dev > /dev/null 2>&1
|
||||
|
||||
- name: Run golangci-lint
|
||||
continue-on-error: false
|
||||
uses: golangci/golangci-lint-action@v2.3.0
|
||||
with:
|
||||
version: v1.32
|
||||
|
||||
- name: Run tests
|
||||
env:
|
||||
DISPLAY: ":99.0"
|
||||
run: |
|
||||
xvfb-run --auto-servernum go test -v -race ./...
|
||||
|
||||
- name: Build binary
|
||||
run: go build .
|
Loading…
Reference in New Issue
Block a user