Remove Slack wrapper configuration from Git #48
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: Nelson tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
docker: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build image | |
run: docker-compose build php | |
- name: test directories | |
run: mkdir vendor && chmod -R 0777 vendor | |
- name: Install dependencies | |
run: docker-compose run --rm php composer install | |
- name: Run tests | |
run: make tests |