We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit c315eeeCopy full SHA for c315eee
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: ci
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+jobs:
7
+ example:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ - name: Setup example
12
+ run: |
13
+ mkdir -p example/.fluentci
14
+ cp -r src example/.fluentci
15
+ cp Cargo.toml example/.fluentci
16
+ cp Cargo.lock example/.fluentci
17
+ - name: Setup Fluent CI CLI
18
+ uses: fluentci-io/setup-fluentci@v5
19
+ with:
20
+ wasm: true
21
+ plugin: .
22
+ args: |
23
+ setup
24
+ working-directory: example
25
+ - name: Show trufflehog version
26
27
+ type trufflehog
28
+ trufflehog --version
.gitignore
@@ -0,0 +1 @@
+target/*
0 commit comments