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:
|
||||
push:
|
||||
branches:
|
||||
- "**"
|
||||
- "master"
|
||||
tags:
|
||||
- "!**"
|
||||
|
||||
@@ -11,11 +11,10 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Create Release Archive
|
||||
- name: Create Release
|
||||
id: semrelease
|
||||
uses: go-semantic-release/action@v1
|
||||
with:
|
||||
# custom-arguments: --provider=gitea
|
||||
hooks: exec
|
||||
env:
|
||||
GITEA_TOKEN: ${{ secrets.G_TOKEN }}
|
||||
|
||||
10
.github/workflows/dist.yml
vendored
10
.github/workflows/dist.yml
vendored
@@ -12,13 +12,11 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v4 # Checkout Sourcecode
|
||||
- uses: https://hub.cybercinch.nz/cybercinch/composer-build-action@v1
|
||||
- run: |
|
||||
ls -lah
|
||||
- uses: https://hub.cybercinch.nz/guisea/gitea-composer-upload-action@v1
|
||||
- uses: https://hub.cybercinch.nz/guisea/gitea-composer-upload-action@master
|
||||
with:
|
||||
base_url: "${{ secrets.G_SERVER_URL}}"
|
||||
baseurl: "${{ secrets.G_SERVER_URL}}"
|
||||
access_token: "${{ secrets.G_TOKEN }}"
|
||||
username: "${{ secrets.G_USERNAME }}"
|
||||
owner: "cybercinch" # Override owner name for repository (Optional)
|
||||
package_version: "${{ env.GITHUB_REF_NAME }}"
|
||||
owner: "cybercinch" # Override owner name for repository (Optional) Only if different from username
|
||||
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