Skip to content

Commit 34ae80a

Browse files
committed
Initial Commit
0 parents  commit 34ae80a

File tree

8 files changed

+555
-0
lines changed

8 files changed

+555
-0
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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+
fish echo "Hello, world!"
24+
working-directory: example

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target/*

0 commit comments

Comments
 (0)