Skip to content

chore: ci

chore: ci #1

Workflow file for this run

name: CI
on:
workflow_dispatch: {}
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 "[email protected]"
git add README.md
git commit -m "docs: add Mona Lisa docs"
- name: Run cocogitto-action
uses: ./cocogitto-action