summaryrefslogtreecommitdiff
path: root/.github/workflows/pre-commit.yml
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2022-12-04 22:25:54 +0700
committerGitHub <[email protected]>2022-12-04 22:25:54 +0700
commit279e2d6aeb1bb1dd2dfb1e861e3a9d1102cd0b88 (patch)
tree0d89a83e12b2fdca2e9d41d52e949e79d8025d01 /.github/workflows/pre-commit.yml
parentd6d2499ad6d85cbc5f27a2917c04cca4aa1144ba (diff)
parentfeed1a83a9e7b63563278d4e86919077b4de2d72 (diff)
Merge pull request #1774 from hathach/add-codespell
Add codespell to ci run
Diffstat (limited to '.github/workflows/pre-commit.yml')
-rw-r--r--.github/workflows/pre-commit.yml36
1 files changed, 36 insertions, 0 deletions
diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml
new file mode 100644
index 000000000..2463903f8
--- /dev/null
+++ b/.github/workflows/pre-commit.yml
@@ -0,0 +1,36 @@
+name: pre-commit
+
+on:
+ pull_request:
+ push:
+
+concurrency:
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
+ cancel-in-progress: true
+
+jobs:
+ pre-commit:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Setup Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: '3.x'
+
+ - name: Setup Ruby
+ uses: ruby/setup-ruby@v1
+ with:
+ ruby-version: '2.7'
+
+ - name: Checkout TinyUSB
+ uses: actions/checkout@v3
+
+ - name: Run codespell
+ uses: codespell-project/actions-codespell@master
+
+ - name: Run Unit Tests
+ run: |
+ # Install Ceedling
+ gem install ceedling
+ cd test
+ ceedling test:all \ No newline at end of file