Skip to content

Commit

Permalink
configuring github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
arhea committed Dec 2, 2023
1 parent d2b2fca commit 580aa68
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Quality
name: Test / Quality

on: push
on:
push:
branches: [main]

pull_request:
types: [opened, reopened, edited]

jobs:
check:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Release

on:
release:
types: [published]

jobs:
docs:
name: Trigger Documentation
runs-on: ubuntu-latest

permissions:
contents: "read"

steps:
- run: curl -sfL https://proxy.golang.org/github.com/${{ github.repository }}/@v/${{ github.ref_name }}.info
shell: bash

0 comments on commit 580aa68

Please sign in to comment.