Skip to content

Commit c315eee

Browse files
committed
Initial Commit
0 parents  commit c315eee

File tree

7 files changed

+648
-0
lines changed

7 files changed

+648
-0
lines changed

.github/workflows/ci.yml

+28
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
27+
type trufflehog
28+
trufflehog --version

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target/*

0 commit comments

Comments
 (0)