We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21a4d4c commit 7ddca42Copy full SHA for 7ddca42
.circleci/config.yml
.github/workflows/pull_request.yml
@@ -0,0 +1,25 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ branches: ["main"]
6
+ pull_request:
7
8
+permissions:
9
+ contents: read
10
11
+concurrency:
12
+ group: ${{ github.workflow }}-${{ github.ref }}
13
+ cancel-in-progress: ${{ github.ref != 'refs/head/main' }}
14
15
+jobs:
16
+ check_lint:
17
+ if: github.repository == 'ml-explore/mlx-examples'
18
+ runs-on: ubuntu-22.04
19
+ steps:
20
+ - uses: actions/checkout@v5
21
+ - uses: actions/setup-python@v6
22
+ with:
23
+ python-version: "3.10"
24
+ - uses: pre-commit/[email protected]
25
0 commit comments