Skip to content

update docs action

update docs action #25

Workflow file for this run

name: "Windows Builds"
on: [push, pull_request, workflow_dispatch] # triggers
jobs:
build:
runs-on: ${{ matrix.os }} # windows-latest
strategy:
matrix:
os: [windows-2019, windows-2022]
arch:
- amd64
- arm64
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v4
- name: "Enable Developer Command Prompt"
uses: ilammy/msvc-dev-cmd@v1
- name: "Install PowerShell"
shell: cmd
run: winget install --id Microsoft.Powershell --source winget
- name: "Build AutonomySim"
shell: pwsh
run: ./scripts/build.ps1