Move to Gitea Actions
This commit is contained in:
parent
dce3b5f0a4
commit
56638ee710
24
.drone.yml
24
.drone.yml
@ -1,24 +0,0 @@
|
|||||||
kind: pipeline
|
|
||||||
name: default
|
|
||||||
type: docker
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: nextcloud:22
|
|
||||||
image: nextcloud:22
|
|
||||||
commands:
|
|
||||||
- curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar
|
|
||||||
- chmod +x /usr/local/bin/composer
|
|
||||||
- composer install
|
|
||||||
- composer run lint
|
|
||||||
- composer run cs:check
|
|
||||||
- composer run psalm:check
|
|
||||||
|
|
||||||
- name: nextcloud:27
|
|
||||||
image: nextcloud:27.0.0
|
|
||||||
commands:
|
|
||||||
- curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar
|
|
||||||
- chmod +x /usr/local/bin/composer
|
|
||||||
- composer install
|
|
||||||
- composer run lint
|
|
||||||
- composer run cs:check
|
|
||||||
- composer run psalm:check
|
|
31
.gitea/workflows/epubreader.yml
Normal file
31
.gitea/workflows/epubreader.yml
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
name: epubreader
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
nextcloud-22:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: nextcloud:22
|
||||||
|
steps:
|
||||||
|
- run: apt-get update
|
||||||
|
- run: apt-get install -y git nodejs
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- run: curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar
|
||||||
|
- run: chmod +x /usr/local/bin/composer
|
||||||
|
- run: composer install
|
||||||
|
- run: composer run lint
|
||||||
|
- run: composer run cs:check
|
||||||
|
- run: composer run psalm:check
|
||||||
|
|
||||||
|
nextcloud-27:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: nextcloud:27.0.0
|
||||||
|
steps:
|
||||||
|
- run: apt-get update
|
||||||
|
- run: apt-get install -y git nodejs
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- run: curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar
|
||||||
|
- run: chmod +x /usr/local/bin/composer
|
||||||
|
- run: composer install
|
||||||
|
- run: composer run lint
|
||||||
|
- run: composer run cs:check
|
||||||
|
- run: composer run psalm:check
|
Reference in New Issue
Block a user