Skip to content

Commit

Permalink
re-added workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
cxreiff committed Aug 7, 2024
1 parent 5268376 commit 1dd3a4c
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: check

on:
push:
branches:
- main
pull_request:

jobs:
check:
permissions:
checks: write
uses: cxreiff/github_workflows/.github/workflows/rust_check.yml@main
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: release

permissions:
pull-requests: write
contents: write

on:
push:
branches:
- main

jobs:
release:
uses: cxreiff/github_workflows/.github/workflows/rust_release.yml@main
permissions:
pull-requests: write
contents: write
secrets:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
11 changes: 11 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: test

on:
push:
branches:
- main
pull_request:

jobs:
test:
uses: cxreiff/github_workflows/.github/workflows/rust_test.yml@main

0 comments on commit 1dd3a4c

Please sign in to comment.