Pull container in exports.yml #4
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
# This is a basic workflow to help you get started with Actions | |
name: Electrical Rules Check | |
# Controls when the action will run. | |
on: | |
# Run when any design files are changed | |
push: | |
paths: | |
- '**.kicad_sch' | |
pull_request: | |
paths: | |
- '**.kicad_sch' | |
merge_group: | |
paths: | |
- '**.kicad_pcb' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
#jobs: | |
exports: | |
runs-on: ubuntu-latest | |
container: ghcr.io/inti-cmnb/kicad8_auto:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: kicad-cli sch erc --exit-code-violations GeoMCU.kicad_sch | |
- name: Artifacts Upload | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: Report | |
path: GeoMCU.rpt |