Skip to content

build(deps): bump KSXGitHub/github-actions-deploy-aur from 2.7.0 to 2.7.1 #311

build(deps): bump KSXGitHub/github-actions-deploy-aur from 2.7.0 to 2.7.1

build(deps): bump KSXGitHub/github-actions-deploy-aur from 2.7.0 to 2.7.1 #311

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build Test
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build_linux:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Build Linux
run: make CFLAGS+=-Werror debug
build_windows:
# The type of runner that the job will run on
runs-on: windows-2019
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v4
- name: Run Makefile
shell: powershell
run: |
$env:Path += ";C:\msys64\mingw64\bin"
mingw32-make.exe debug
build_macos:
# The type of runner that the job will run on
runs-on: macos-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Build MacOS
run: make CFLAGS+=-Werror debug