1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-19 19:25:24 +00:00

👷 Ignore docs files in CI, let all jobs run

This commit is contained in:
makeworld 2020-12-07 15:25:14 -05:00
parent fe0b2504cf
commit 9729802149
2 changed files with 30 additions and 2 deletions

View File

@ -1,5 +1,19 @@
name: golangci-lint
on: [push, pull_request]
on:
push:
paths-ignore:
- '**.md'
- '**.toml'
- '**.desktop'
- 'LICENSE'
pull_request:
paths-ignore:
- '*.md'
- '*.toml'
- '*.desktop'
- 'LICENSE'
jobs:
golangci:
name: lint

View File

@ -1,9 +1,23 @@
on: [push, pull_request]
name: Test
on:
push:
paths-ignore:
- '**.md'
- '**.toml'
- '**.desktop'
- 'LICENSE'
pull_request:
paths-ignore:
- '*.md'
- '*.toml'
- '*.desktop'
- 'LICENSE'
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version: ['1.13', '1.14', '1.15']
os: [ubuntu-latest, macos-latest, windows-latest]