This commit is contained in:
29
.gitea/workflows/ci.yml
Normal file
29
.gitea/workflows/ci.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
smoke:
|
||||
runs-on: linux-amd64
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Show workspace
|
||||
run: |
|
||||
echo "repo: ${GITHUB_REPOSITORY}"
|
||||
echo "sha: ${GITHUB_SHA}"
|
||||
pwd
|
||||
git status --short
|
||||
find . -maxdepth 2 -type f | sort
|
||||
|
||||
- name: Validate template files
|
||||
run: |
|
||||
test -f README.md
|
||||
test -f .editorconfig
|
||||
test -f .gitea/workflows/ci.yml
|
||||
Reference in New Issue
Block a user