Skip to content

Commit 580aa68

Browse files
committed
configuring github actions
1 parent d2b2fca commit 580aa68

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
name: Quality
1+
name: Test / Quality
22

3-
on: push
3+
on:
4+
push:
5+
branches: [main]
6+
7+
pull_request:
8+
types: [opened, reopened, edited]
49

510
jobs:
611
check:

.github/workflows/release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
docs:
9+
name: Trigger Documentation
10+
runs-on: ubuntu-latest
11+
12+
permissions:
13+
contents: "read"
14+
15+
steps:
16+
- run: curl -sfL https://proxy.golang.org/github.com/${{ github.repository }}/@v/${{ github.ref_name }}.info
17+
shell: bash

0 commit comments

Comments
 (0)