2023-05-17 10:24:28 +00:00
|
|
|
name: macOS
|
2019-08-31 08:28:38 +00:00
|
|
|
|
2023-05-12 09:00:47 +00:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- ".github/workflows/images-*"
|
2023-05-12 09:12:18 +00:00
|
|
|
- ".github/workflows/debian-cache.yml"
|
2023-05-16 12:06:59 +00:00
|
|
|
- ".github/workflows/e2e.yml"
|
2023-05-17 11:09:26 +00:00
|
|
|
- "docs/**"
|
|
|
|
- "README.md"
|
2023-05-12 09:00:47 +00:00
|
|
|
pull_request:
|
2019-08-31 08:28:38 +00:00
|
|
|
|
2023-05-18 11:58:53 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow_ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2019-08-31 08:28:38 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
2023-05-17 10:24:28 +00:00
|
|
|
name: Build
|
2019-08-31 08:28:38 +00:00
|
|
|
runs-on: macOS-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2019-08-31 09:51:06 +00:00
|
|
|
|
|
|
|
- name: Build
|
2019-08-31 08:28:38 +00:00
|
|
|
run: go build
|