Issue 183 : add keywords and categories pages #277
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: E2E | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
simple_library: | |
name: 'Scenario: Simple library' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
database: [sqlite, mysql, postgres] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Run Scenario | |
env: | |
DATABASE: ${{ matrix.database }} | |
SCENARIO: simple-library | |
run: | | |
cd e2e/images | |
git config --global user.name "Alexandrie E2E Tester" | |
git config --global user.email "[email protected]" | |
./run-scenario.sh |