Merge pull request #177 from Hirevo/dependabot/cargo/webpki-0.22.2 #268
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 "nicolas@polomack.eu" | |
./run-scenario.sh |