kopia lustrzana https://github.com/micropython/micropython
28 wiersze
533 B
YAML
28 wiersze
533 B
YAML
name: teensy port
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/*.yml'
|
|
- 'tools/**'
|
|
- 'py/**'
|
|
- 'extmod/**'
|
|
- 'lib/**'
|
|
- 'drivers/**'
|
|
- 'ports/teensy/**'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install packages
|
|
run: source tools/ci.sh && ci_teensy_setup
|
|
- name: Build
|
|
run: source tools/ci.sh && ci_teensy_build
|