Skip to content

Commit 3788407

Browse files
committed
ci: add ci workflows
1 parent 102b17f commit 3788407

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: CI
3+
4+
on:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
uses: semantic-release-action/rust/.github/workflows/ci.yml@beta
10+
with:
11+
disable-semantic-release-cargo: true
12+

.github/workflows/release.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Release
3+
4+
on:
5+
push:
6+
branches:
7+
- master
8+
- next
9+
- next-major
10+
- beta
11+
- alpha
12+
- "[0-9]+.[0-9]+.x"
13+
- "[0-9]+.x"
14+
15+
jobs:
16+
release:
17+
uses: semantic-release-action/rust/.github/workflows/release-binary.yml@beta
18+
with:
19+
disable-semantic-release-cargo: true
20+

0 commit comments

Comments
 (0)