We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9244695 commit adaacc4Copy full SHA for adaacc4
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,31 @@
1
+name: Test Codee Formatter action
2
+
3
+on:
4
+ push:
5
+ tags-ignore:
6
+ - v**
7
+ pull_request:
8
+ branches:
9
+ - master
10
+ schedule:
11
+ - cron: '0 0 * * 0'
12
13
+jobs:
14
+ test:
15
+ runs-on: ${{ matrix.os }}
16
+ strategy:
17
+ matrix:
18
+ os: [ubuntu-latest, windows-latest, macos-latest]
19
20
+ steps:
21
+ - name: Checkout repo
22
+ uses: actions/checkout@v4
23
24
+ - name: Run Setup Codee action
25
+ uses: ./
26
27
+ - name: List of Codee files
28
+ shell: bash
29
+ run: |
30
+ echo "Contents of /tmp/codee/:"
31
+ ls -la /tmp/codee/
0 commit comments