Skip to content

Commit

Permalink
ci: add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
oradwell authored and oknozor committed May 15, 2024
1 parent 64a1b79 commit f6b07ad
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on: push

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
path: cocogitto-action
- name: Initialise repository
run: |
git init
echo "# Mona Lisa" > README.md
git config --global user.name "Mona Lisa"
git config --global user.email "mona.lisa@example.com"
git add README.md
git commit -m "docs: add Mona Lisa docs"
- name: Run cocogitto-action
uses: ./cocogitto-action

0 comments on commit f6b07ad

Please sign in to comment.