Lint info.xml / xml-lint (push) Successful in 28s
Lint PHP / php-lint (8.2) (push) Successful in 51s
Lint PHP / php-lint (8.3) (push) Successful in 40s
Lint PHP / php-lint (8.4) (push) Successful in 47s
PHPUnit / unit-tests (push) Successful in 49s
Build release artifact / package (push) Failing after 2m19s
actions/checkout v4 -> v7, actions/setup-node v4 -> v7, actions/upload-artifact v4 -> v7 across all workflows. shivammathur/setup-php stays on the floating @v2 tag, which already resolves to the latest 2.x release.
24 lines
587 B
YAML
24 lines
587 B
YAML
name: Lint info.xml
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
xml-lint:
|
|
runs-on: gitea-runner-server03
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
|
|
- name: Install xmllint
|
|
run: |
|
|
apt-get update
|
|
apt-get install -y --no-install-recommends libxml2-utils
|
|
|
|
- name: Download appstore schema
|
|
run: wget -q https://raw.githubusercontent.com/nextcloud/appstore/master/nextcloudappstore/api/v1/release/info.xsd -O info.xsd
|
|
|
|
- name: Validate appinfo/info.xml
|
|
run: xmllint --schema info.xsd appinfo/info.xml --noout
|