Skip to content

Commit

Permalink
cleaner comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bunchofstring committed Nov 12, 2024
1 parent 476c45b commit c02a61c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
name: Python Lint
runs-on: ubuntu-latest
steps:
# Fetch the code to be tested
# Fetch the code and set up an interpreter
- uses: actions/checkout@v4

# Satisfy remaining requirements to lint the code
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'

# Satisfy remaining requirements to lint the code
- name: Install Python dependencies
run: pip install black flake8

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,25 @@ jobs:
name: Full Regression Test
runs-on: ubuntu-latest
steps:
# Fetch the code to be tested
# Fetch the code and set up an interpreter
- uses: actions/checkout@v4

# Satisfy remaining requirements to run the code
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'

# Satisfy remaining requirements to run the code
- name: Install dependencies
run: |
pip install -r worker/source/requirements.txt
# Run tests
# Failure behavior
# 1. When all steps above have completed successfully, begin test execution
# 2. When failure occurs, then indicate the failure in the associated PR checker
# 2. When failure occurs, then indicate it in the associated PR checker
# 3. Do NOT halt test execution (i.e. proceed if possible)
# Note: In order to support failure behavior 3 above, the always() status function
# appears below to avoid the default, which is success().
# Note: In order to support 3 above, the always() status function ensures
# that the conditional is evaluated independently - NOT prepended with with
# "success() && " (i.e. default)
- name: Prepare for testing
id: prepare
run: |
Expand Down

0 comments on commit c02a61c

Please sign in to comment.