Generalize TileSingleImage #1677
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test-current: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Copy .env | |
run: cp .env.example .env | |
- name: Set testing key | |
run: echo "APP_KEY=base64:STZFA4bQKDjE2mlpRPmsJ/okG0eCh4RHd9BghtZeYmQ=" >> .env | |
- name: Install Dependencies | |
run: composer install --no-ansi --no-interaction --no-scripts --no-suggest --prefer-dist --ignore-platform-reqs | |
- name: Fetch base images | |
run: | | |
docker pull ghcr.io/biigle/app:latest | |
docker pull ghcr.io/biigle/worker:latest | |
docker pull ghcr.io/biigle/pgvector:latest | |
- name: Start test database | |
run: | | |
docker compose up -d --no-build database_testing | |
sleep 5 | |
- name: Run tests | |
run: docker compose run --rm -u 1001 worker php -d memory_limit=1G vendor/bin/phpunit --random-order | |
test-modules: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
ref: dev-modules | |
fetch-depth: 1 | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Copy .env | |
run: cp .env.example .env | |
- name: Set testing key | |
run: echo "APP_KEY=base64:STZFA4bQKDjE2mlpRPmsJ/okG0eCh4RHd9BghtZeYmQ=" >> .env | |
- name: Install Dependencies | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist --ignore-platform-reqs | |
- name: Remove BIIGLE modules | |
run: rm -r vendor/biigle | |
- name: Update BIIGLE modules from source | |
run: composer update --no-ansi --no-interaction --no-scripts --no-suggest --prefer-source --ignore-platform-reqs biigle/* | |
- name: Fetch base images | |
run: | | |
docker pull ghcr.io/biigle/app:latest | |
docker pull ghcr.io/biigle/worker:latest | |
docker pull ghcr.io/biigle/pgvector:latest | |
- name: Start test database | |
run: | | |
docker compose up -d --no-build database_testing | |
sleep 5 | |
- name: Run tests | |
run: docker compose run --rm -u 1001 worker php -d memory_limit=1G vendor/bin/phpunit --random-order | |
test-js-bundle: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- name: Set registry authentication token | |
run: echo "//npm.pkg.github.com/:_authToken=$GITHUB_TOKEN" >> .npmrc | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Install NPM packages | |
run: npm install | |
- name: Bundle js | |
run: npm run prod |