You've already forked ugly-queue
Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7efd74fe34 | |||
| 5a38301d36 | |||
| 007ea93946 | |||
| defcc3b98c | |||
| 867db02cde | |||
| 491046dcf0 | |||
| f8be2fc67f | |||
| d1e3b2124f | |||
| ad401888f8 | |||
| 80219635ad | |||
| 2d2047f0b9 | |||
| 443f5eefa9 | |||
| fe8fac0e07 | |||
| fe7e429568 | |||
| f7e5bf4cd9 | |||
| 1b69a901d9 | |||
| ee889a3841 | |||
| 4400bff0b4 | |||
| 8b9534bc91 |
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
@@ -2,7 +2,7 @@ name: CI
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- "**"
|
- "master"
|
||||||
tags:
|
tags:
|
||||||
- "!**"
|
- "!**"
|
||||||
|
|
||||||
@@ -11,11 +11,10 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Create Release Archive
|
- name: Create Release
|
||||||
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 }}
|
||||||
|
|||||||
10
.github/workflows/dist.yml
vendored
10
.github/workflows/dist.yml
vendored
@@ -12,13 +12,11 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4 # Checkout Sourcecode
|
- uses: actions/checkout@v4 # Checkout Sourcecode
|
||||||
- uses: https://hub.cybercinch.nz/cybercinch/composer-build-action@v1
|
- uses: https://hub.cybercinch.nz/cybercinch/composer-build-action@v1
|
||||||
- run: |
|
- uses: https://hub.cybercinch.nz/guisea/gitea-composer-upload-action@master
|
||||||
ls -lah
|
|
||||||
- uses: https://hub.cybercinch.nz/guisea/gitea-composer-upload-action@v1
|
|
||||||
with:
|
with:
|
||||||
base_url: "${{ secrets.G_SERVER_URL}}"
|
baseurl: "${{ secrets.G_SERVER_URL}}"
|
||||||
access_token: "${{ secrets.G_TOKEN }}"
|
access_token: "${{ secrets.G_TOKEN }}"
|
||||||
username: "${{ secrets.G_USERNAME }}"
|
username: "${{ secrets.G_USERNAME }}"
|
||||||
owner: "cybercinch" # Override owner name for repository (Optional)
|
owner: "cybercinch" # Override owner name for repository (Optional) Only if different from username
|
||||||
package_version: "${{ env.GITHUB_REF_NAME }}"
|
version: "${{ env.GITHUB_REF_NAME }}"
|
||||||
|
|
||||||
|
|||||||
24
.github/workflows/test.yml
vendored
Normal file
24
.github/workflows/test.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
name: CI
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "develop"
|
||||||
|
# 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"
|
||||||
|
|
||||||
|
- name: "Run Tests with PHPunit"
|
||||||
|
run: |
|
||||||
|
/usr/bin/php vendor/phpunit/phpunit/phpunit --configuration ./phpunit.xml.dist
|
||||||
|
|
||||||
Reference in New Issue
Block a user