We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7526491 commit d06dd15Copy full SHA for d06dd15
.github/CODEOWNERS
@@ -0,0 +1,2 @@
1
+* @init4tech/engineering
2
+.github/workflows @rswanson
.github/workflows/rust.yml
@@ -0,0 +1,15 @@
+name: CI # Continuous Integration
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches: [main]
7
+ pull_request:
8
9
+# simplest example of using the rust-base action
10
+jobs:
11
+ rust-library-base:
12
+ uses: init4tech/actions/.github/workflows/rust-library-base.yml@main
13
+ with:
14
+ require-lockfile: true
15
+ rust-profile: "ci-rust"
0 commit comments