Skip to content

Commit

Permalink
Add readme action and rename pio CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
dakalamin committed Oct 19, 2024
1 parent 840faa0 commit 5f41c83
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/action.yaml → .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: PlatformIO CI
name: Build project with PlatformIO

on: [push]
on:
push:
paths:
- '.github/workflows/build.yaml'
- 'src/**'
- 'platformio.ini'

jobs:
build:
Expand All @@ -20,6 +25,5 @@ jobs:
check-latest: true
- name: Install PlatformIO Core
run: pip install --upgrade platformio

- name: Build PlatformIO Project
- name: Build project
run: pio run
18 changes: 18 additions & 0 deletions .github/workflows/readme.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check links in README

on:
push:
paths:
- '.github/workflows/readme.yaml'
- 'README.md'
schedule:
# run twice a month (on 1st and 15th of every month at 12:00 UTC)
- cron: '0 12 1,15 * *'

jobs:
linkinator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Linkinator
uses: JustinBeckwith/linkinator-action@v1

0 comments on commit 5f41c83

Please sign in to comment.