Skip to content

Commit

Permalink
now installing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wangpatrick57 committed Jul 8, 2024
1 parent 9bfbc8d commit 4444bfe
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/unittest_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,18 @@ jobs:
steps:
- uses: actions/checkout@v2

# We could choose to set up dependencies manually in the GHA runner.
#
# However, I think it's better to do them in the GHA itself so that
# we're testing our dependency installation step in addition to our
# actual code.
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Run a script
- name: Install dependencies
run: ./dependency/install_dependencies.sh

- name: Run unit tests
run: python scripts/run_unittests.py

0 comments on commit 4444bfe

Please sign in to comment.