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 e394e1e
Show file tree
Hide file tree
Showing 8 changed files with 601 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 0.10.0
call -m github.com/fluent-ci-templates/base-pipeline@main hello
working-directory: example
- name: Show dagger version
run: |
export PATH=${HOME}/.local/bin:${PATH}
type dagger
dagger 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 e394e1e

Please sign in to comment.