Skip to content

essai

essai #2

Workflow file for this run

name: essai
on:
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: true
matrix:
#os: [macos-latest, ubuntu-24.04-arm, ubuntu-latest, windows-11-arm, windows-latest]
os: [windows-11-arm]
runs-on: ${{ matrix.os }}
steps:
# ----------------------------
# Checkout
# ----------------------------
- uses: actions/checkout@v4
# ---------------------------------------
# Disable Windows Defender (Windows only)
# ---------------------------------------
- name: Disable Windows Defender (Windows only)
if: startsWith(matrix.os, 'windows')
shell: powershell
run: |
Set-MpPreference -DisableRealtimeMonitoring $true
# ---------------------------------------
# bash commands
# ---------------------------------------
- name: Run a bash command
shell: bash
run: |
uname -m