Add Gitea Actions CI workflow
Runs docker build . on push to main and pull requests.
This commit is contained in:
parent
e6d75ed57f
commit
a77096326a
14
.gitea/workflows/check.yml
Normal file
14
.gitea/workflows/check.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
name: check
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
pull_request:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- run: docker build .
|
||||||
Loading…
Reference in New Issue
Block a user