Add copilot management files #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Copilot Setup Steps" | |
# Setup the environment for Copilot agents to run in | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- .github/workflows/copilot-setup-steps.yml | |
pull_request: | |
paths: | |
- .github/workflows/copilot-setup-steps.yml | |
jobs: | |
copilot-setup-steps: | |
runs-on: ubuntu-latest | |
# Needed to clone the repository | |
permissions: | |
contents: read | |
# Install dependencies | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install build-essential cmake g++ ninja-build | |
sudo apt install qtbase5-dev qtbase5-private-dev qttools5-dev qttools5-dev-tools libqt5svg5-dev libargon2-dev libkeyutils-dev libminizip-dev libbotan-2-dev libqrencode-dev zlib1g-dev asciidoctor libreadline-dev libpcsclite-dev libusb-1.0-0-dev libxi-dev libxtst-dev libqt5x11extras5-dev |