From 3daff175e0936841a9e5997589877b0bc526a9a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Guillot?= Date: Wed, 23 Dec 2020 11:52:28 -0800 Subject: [PATCH] Archive project (Not maintained anymore) --- .github/issue_template.md | 21 -------- .github/workflows/unit_tests.yml | 90 -------------------------------- 2 files changed, 111 deletions(-) delete mode 100644 .github/issue_template.md delete mode 100644 .github/workflows/unit_tests.yml diff --git a/.github/issue_template.md b/.github/issue_template.md deleted file mode 100644 index 85dcb3d..0000000 --- a/.github/issue_template.md +++ /dev/null @@ -1,21 +0,0 @@ -**Please, do not create duplicate issues** - - -### Actual behaviour - - -### Expected behaviour - - -### Steps to reproduce - - -### Configuration - -- Plugin version: -- Kanboard version: -- Database type and version: -- PHP version: -- OS: -- Browser: - diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml deleted file mode 100644 index d9716e5..0000000 --- a/.github/workflows/unit_tests.yml +++ /dev/null @@ -1,90 +0,0 @@ -name: Unit Tests - -on: - pull_request: - branches: [ master ] - -jobs: - Sqlite: - runs-on: ubuntu-latest - container: kanboard/tests:latest - steps: - - name: Checkout Kanboard repo - uses: actions/checkout@v2 - with: - repository: kanboard/kanboard - - name: Checkout Plugin repo - uses: actions/checkout@v2 - with: - path: plugins/Calendar - - name: Install dependencies - run: composer install --prefer-dist --no-progress --no-suggest - - name: Unit tests with Sqlite - run: ./vendor/bin/phpunit -c tests/units.sqlite.xml plugins/Calendar/Test/ - - Postgres: - runs-on: ubuntu-latest - container: kanboard/tests:latest - services: - postgres: - image: postgres:9.4 - env: - POSTGRES_USER: postgres - POSTGRES_PASSWORD: postgres - POSTGRES_DB: postgres - ports: - - 5432:5432 - options: >- - --health-cmd pg_isready - --health-interval 10s - --health-timeout 5s - --health-retries 5 - steps: - - name: Checkout Kanboard repo - uses: actions/checkout@v2 - with: - repository: kanboard/kanboard - - name: Checkout Plugin repo - uses: actions/checkout@v2 - with: - path: plugins/Calendar - - name: Install dependencies - run: composer install --prefer-dist --no-progress --no-suggest - - name: Unit tests with Postgres - run: ./vendor/bin/phpunit -c tests/units.postgres.xml plugins/Calendar/Test/ - env: - DB_HOSTNAME: postgres - DB_PORT: ${{ job.services.postgres.ports[5432] }} - - MariaDB: - runs-on: ubuntu-latest - container: kanboard/tests:latest - services: - mariadb: - image: mariadb:latest - env: - MYSQL_ROOT_PASSWORD: secret - ports: - - 3306:3306 - options: >- - --health-cmd "mysqladmin ping" - --health-interval 10s - --health-timeout 5s - --health-retries 5 - steps: - - name: Checkout Kanboard repo - uses: actions/checkout@v2 - with: - repository: kanboard/kanboard - - name: Checkout Plugin repo - uses: actions/checkout@v2 - with: - path: plugins/Calendar - - name: Install dependencies - run: composer install --prefer-dist --no-progress --no-suggest - - name: Unit tests with MariaDB - run: ./vendor/bin/phpunit -c tests/units.mysql.xml plugins/Calendar/Test/ - env: - DB_HOSTNAME: mariadb - DB_PASSWORD: secret - DB_PORT: ${{ job.services.mariadb.ports[3306] }}