Improve accessibility by setting initial focus on the reporting quest… #111
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: Test | |
on: [ push, pull_request ] | |
env: | |
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
jobs: | |
run_tests: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install git | |
run: | | |
sudo apt-get update -q | |
sudo apt-get install -y git | |
- name: Run tests | |
run: | | |
cd $GITHUB_WORKSPACE | |
./.github/workflows/scripts/run-tests.sh |