Skip to content

Commit

Permalink
Adapt to "tmpl-go" template repository version 0.3.0 (#15)
Browse files Browse the repository at this point in the history
Adapted to "tmpl-go" version 0.3.0 [2] which includes a optimized run
configuration for the CI workflow [2] that helps to improve the
performance though more fine grained configurations:

- Only runs on pushes to the `main` branch.
- Only runs on pushes for `v*` tags.
- Always runs for pushes to PRs.

[2]: svengreb/tmpl-go#18
[1]: https://github.com/svengreb/tmpl-go/releases/tag/v0.3.0

Resolves GH-14
  • Loading branch information
svengreb authored Sep 25, 2020
1 parent 2fca9af commit 7ddcd61
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@
# GitHub Action Workflow for continuous integration jobs.
# See https://docs.github.com/en/actions and https://github.com/features/actions for more details.

name: CI
on: [push]
name: ci
on:
push:
branches:
- main
tags:
- v*
pull_request:

jobs:
lint-node:
Expand Down

0 comments on commit 7ddcd61

Please sign in to comment.