You've already forked ugly-queue
Compare commits
2 Commits
ad401888f8
...
f8be2fc67f
| Author | SHA1 | Date | |
|---|---|---|---|
| f8be2fc67f | |||
| d1e3b2124f |
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
@@ -15,7 +15,6 @@ jobs:
|
|||||||
id: semrelease
|
id: semrelease
|
||||||
uses: go-semantic-release/action@v1
|
uses: go-semantic-release/action@v1
|
||||||
with:
|
with:
|
||||||
# custom-arguments: --provider=gitea
|
|
||||||
hooks: exec
|
hooks: exec
|
||||||
env:
|
env:
|
||||||
GITEA_TOKEN: ${{ secrets.G_TOKEN }}
|
GITEA_TOKEN: ${{ secrets.G_TOKEN }}
|
||||||
|
|||||||
21
.github/workflows/test.yml
vendored
Normal file
21
.github/workflows/test.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
name: CI
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "**!master"
|
||||||
|
pull_request:
|
||||||
|
types: [ opened, reopened ]
|
||||||
|
tags:
|
||||||
|
- "!**"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: "shivammathur/setup-php@v2"
|
||||||
|
with:
|
||||||
|
php-version: "7.4"
|
||||||
|
- uses: "ramsey/composer-install@v3"
|
||||||
|
- uses: php-actions/phpunit@v3
|
||||||
|
|
||||||
Reference in New Issue
Block a user