Skip to content

Commit

Permalink
ci: setup github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Aug 19, 2024
1 parent c084309 commit bc1cc52
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: ci
on:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Fluent CI CLI
uses: fluentci-io/setup-fluentci@v5
with:
wasm: true
plugin: deno
args: |
run -A https://cli.pocketenv.io init -t tsirysndr/base-workspace
run -A https://cli.pocketenv.io up
run -A https://cli.pocketenv.io logs
run -A https://cli.pocketenv.io list
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Display Running Containers
run: docker ps

0 comments on commit bc1cc52

Please sign in to comment.