[TM-1402] Updates to the v2_tree_species -> tree_species_research relationship #1101
Workflow file for this run
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: pull-request | |
on: | |
pull_request: | |
jobs: | |
lintTest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: KengoTODA/actions-setup-docker-compose@v1 | |
with: | |
version: '2.29.1' | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install deps | |
run: make composer | |
- name: Bring up Docker | |
run: make up | |
- name: Lint & Test | |
run: make test | |
- name: Store logs | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: PHP Logs | |
path: storage/logs/ | |
if-no-files-found: ignore |