Skip to content

chore: 2024 update

chore: 2024 update #59

Workflow file for this run

name: Build Test
on:
push:
paths-ignore:
- "*.md"
pull_request:
paths-ignore:
- "*.md"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Build
run: g++ main.cpp -o despised -std=c++11 -Wall -Wextra -Wshadow -Werror
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: despised-${{ matrix.os }}-${{ github.sha }}
path: despised*