Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
yacmov committed May 30, 2024
1 parent f8ffee0 commit 2dd34ce
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/accesibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Accessibility

on:
push:
branches: [ "main", "auto-test" ]
branches: ["main", "auto-test"]
pull_request:
branches: [ "main", "auto-test" ]
branches: ["main", "auto-test"]
workflow_dispatch:

permissions:
Expand All @@ -26,7 +26,7 @@ jobs:
python -m pip install --upgrade pip
pip install flask
pip install -r requirements.txt
# Set up Node.js
- name: Set up Node.js
uses: actions/setup-node@v2
Expand All @@ -39,12 +39,12 @@ jobs:
working-directory: ./app
run: |
export FLASK_APP=app.py
flask run -h localhost -p 5000 &
flask run -h localhost -p 5001 &
# Run accessibility-checker
- name: Run accessibility-checker
run: |
sleep 10
achecker http://localhost:5000
achecker http://localhost:5000/upload
achecker http://localhost:5000/settings
achecker http://localhost:5001
achecker http://localhost:5001/upload
achecker http://localhost:5001/settings

0 comments on commit 2dd34ce

Please sign in to comment.