mirror of
https://github.com/makew0rld/amfora.git
synced 2024-12-04 14:46:29 -05:00
👷 Ignore docs files in CI, let all jobs run
This commit is contained in:
parent
fe0b2504cf
commit
9729802149
16
.github/workflows/golangci-lint.yml
vendored
16
.github/workflows/golangci-lint.yml
vendored
@ -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
|
||||
|
16
.github/workflows/test.yml
vendored
16
.github/workflows/test.yml
vendored
@ -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]
|
||||
|
Loading…
Reference in New Issue
Block a user