Skip to content

use upload-artifact@v4, so it's using Node.js 20 #91

use upload-artifact@v4, so it's using Node.js 20

use upload-artifact@v4, so it's using Node.js 20 #91

Workflow file for this run

# SPDX-FileCopyrightText: 2022 Alec Delaney, written for Adafruit Industries
#
# SPDX-License-Identifier: MIT
name: Build CI
on: [pull_request, push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.x (Latest)
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Checkout current repo
uses: actions/checkout@v4
with:
submodules: true
show-progress: false
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files --show-diff-on-failure