Remove IO ports from non-X64 arches, move valid_ioports into valid_arch_state on X64 #127
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2024, Proofcraft Pty Ltd | |
# | |
# SPDX-License-Identifier: BSD-2-Clause | |
# Theory Linter action | |
name: Lint | |
# needs pull_request_target trigger for more authority on GITHUB_TOKEN when PR | |
# originates on a fork | |
on: [pull_request_target] | |
jobs: | |
thylint: | |
name: 'Theory Linter' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: seL4/ci-actions/thylint@master | |
with: | |
token: ${{ secrets.READ_TOKEN }} | |
pr_num: ${{ github.event.pull_request.number }} | |
- uses: yuzutech/annotations-action@v0.5.0 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
title: 'File annotations for theory linter' | |
input: './annotations.json' | |
continue-on-error: true | |
if: always() |