Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ahueck committed Jan 28, 2025
1 parent ce08f5a commit 336fe39
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/basic-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@ on:
branches: [ master, devel ]
pull_request:
schedule:
- cron: '0 10,18 * * 1'
- cron: '0 10 * * 1'

jobs:
format-check:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Format source code
run: |
clang-format-12 -style=file -i keymap.c support.h
clang-format-14 -style=file -i keymap.c support.h
- name: Format check
run: |
git status --porcelain --untracked-files=no | xargs -o -I {} test -z \"{}\"
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

env:
KEYMAP_NAME: ahueck
Expand All @@ -41,7 +41,7 @@ jobs:
run: qmk setup -y -H ${{env.QMK_HOME}}

- name: Checkout keymap
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: ${{env.QMK_KEYMAP_HOME}}

Expand Down

0 comments on commit 336fe39

Please sign in to comment.