sw_arch_doc: replace cinclude2dot with new python alternative. benefits: #169
Workflow file for this run
This file contains hidden or 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 (c) 2022, 219 Design, LLC | |
# See LICENSE.txt | |
# | |
# https://www.219design.com | |
# Software | Electrical | Mechanical | Product Design | |
# | |
name: verify_authors | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v1 | |
# Remove apt repos that are known to break from time to time | |
# See https://github.com/actions/virtual-environments/issues/323 | |
- name: Remove broken apt repos | |
run: | | |
for apt_file in `grep -lr microsoft /etc/apt/sources.list.d/`; do sudo rm $apt_file; done | |
- if: runner.os == 'Linux' | |
# Fix (another kind) of azure ubuntu apt repo issue. (Unable to connect to azure.archive.ubuntu.com) | |
run: sed -e 's/azure.archive.ubuntu.com/us.archive.ubuntu.com/g' -e t -e d /etc/apt/sources.list | sudo tee /etc/apt/sources.list.d/nonazure.list | |
- name: verify_authors | |
run: ./verify_authors.sh |