Skip to content

Commit adaacc4

Browse files
committed
Add simple testing of action
1 parent 9244695 commit adaacc4

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)