mirror of
https://github.com/esimov/caire.git
synced 2026-04-23 00:07:11 +08:00
65 lines
1.9 KiB
YAML
65 lines
1.9 KiB
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
go-version: [~1.18]
|
|
os: [ubuntu-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
GO111MODULE: "on"
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Cache-Go
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: |
|
|
~/go/pkg/mod # Module download cache
|
|
~/.cache/go-build # Build cache (Linux)
|
|
~/Library/Caches/go-build # Build cache (Mac)
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
- name: Install Linux Dependencies
|
|
if: matrix.os == 'ubuntu-latest'
|
|
run: |
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y gcc pkg-config libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev libvulkan-dev
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Download Go modules
|
|
run: go mod download
|
|
|
|
- name: Build project
|
|
id: makefile
|
|
run: |
|
|
make
|
|
go test -v ./... -run=. -cover
|
|
- name: Collect Workflow Telemetry
|
|
uses: runforesight/foresight-workflow-kit-action@v1
|
|
if: success() || failure()
|
|
with:
|
|
api_key: c72ba9d2-2e6f-4d55-829b-13f0eb98436e
|
|
|
|
- name: Analyze Test and/or Coverage Results
|
|
uses: runforesight/foresight-test-kit-action@v1
|
|
if: success() || failure()
|
|
with:
|
|
api_key: c72ba9d2-2e6f-4d55-829b-13f0eb98436e
|
|
test_format: JSON
|
|
test_framework: GOLANG
|
|
coverage_format: GOLANG |