Skip to content

Commit b6990ab

Browse files
committed
Initial Commit
0 parents  commit b6990ab

File tree

8 files changed

+660
-0
lines changed

8 files changed

+660
-0
lines changed

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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 moon version
26+
run: |
27+
export PATH=${HOME}/.moon/bin:${PATH}
28+
type moon
29+
moon --version

.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)