Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Apr 22, 2024
0 parents commit ef60f3e
Show file tree
Hide file tree
Showing 8 changed files with 688 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: ci
on:
push:
branches:
- main
jobs:
example:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup example
run: |
mkdir -p example/.fluentci
cp -r src example/.fluentci
cp Cargo.toml example/.fluentci
cp Cargo.lock example/.fluentci
- name: Setup Fluent CI CLI
uses: fluentci-io/setup-fluentci@v5
with:
wasm: true
plugin: .
args: |
setup
working-directory: example
- name: Show rye version
run: |
type rye
rye --version
type python3
python3 --version
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target/*
Loading

0 comments on commit ef60f3e

Please sign in to comment.