Skip to content

Test Setup Codee action #23

Test Setup Codee action

Test Setup Codee action #23

Workflow file for this run

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