Use .gitea/ instead of .github/
This commit is contained in:
parent
63b466c9ab
commit
b24effaa95
3 changed files with 19 additions and 0 deletions
19
.gitea/workflows/docker-check.yml
Normal file
19
.gitea/workflows/docker-check.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
name: Docker Build Check
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- 'Dockerfile'
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- 'Dockerfile'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docker-check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Run Docker Build Check
|
||||||
|
run: docker build --check .
|
||||||
Loading…
Add table
Add a link
Reference in a new issue