From ca68f413f1006a14036ded45886ef04d4431dc37 Mon Sep 17 00:00:00 2001 From: Ben Bartling Date: Mon, 12 Aug 2024 09:04:35 -0500 Subject: [PATCH] Update to use Node20 and troubleshoot CI failure cont --- .github/workflows/ci.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc150de..02c84fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: | @@ -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