-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (33 loc) · 775 Bytes
/
test.yml
File metadata and controls
40 lines (33 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Test Setup Codee action
on:
push:
tags-ignore:
- v**
pull_request:
branches:
- master
schedule:
- cron: '0 0 * * 0'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, ubuntu-24.04-arm]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Run Setup Codee action
uses: ./
- name: List of Codee files
shell: bash
run: |
echo "Contents of ${RUNNER_TEMP}/codee/:"
ls -la ${RUNNER_TEMP}/codee/
- name: Check Codee binary (bash)
shell: bash
run: codee --help
- name: Check Codee binary (pwsh)
shell: pwsh
run: codee --help