Skip to content

Move quality checks to private package #86

Move quality checks to private package

Move quality checks to private package #86

Workflow file for this run

# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
name: Licence Checker
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Check formatting with Ruff
run: bazel run //quality:format.check
- name: Run Licence Checker
run: bazel run //quality:licence-check
- name: Test Licence Checker
run: |
cd tests
bazel test :licence_check