Skip to content

Commit

Permalink
Update to use Node20 and troubleshoot CI failure cont
Browse files Browse the repository at this point in the history
  • Loading branch information
bbartling committed Aug 12, 2024
1 parent 4e5d4ad commit ca68f41
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,18 @@ on:
branches:
- master

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE20: true

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4 # Update to v4
uses: actions/checkout@v4 # Using the latest version of the checkout action

- name: Set up Python
uses: actions/setup-python@v4 # Update to v4
uses: actions/setup-python@v4 # Using the latest version of the setup-python action
with:
python-version: '3.12'
python-version: '3.12' # Specify the Python version you are using

- name: Install dependencies
run: |
Expand All @@ -32,8 +29,8 @@ jobs:
- name: Run Black
run: |
black --check open_fdd/ tests/
black --check open_fdd/ tests/ # Check code formatting
- name: Run tests
run: |
pytest tests/
pytest tests/ # Run your test suite

0 comments on commit ca68f41

Please sign in to comment.