Skip to content

cpu: remove redundant semicolons #25

cpu: remove redundant semicolons

cpu: remove redundant semicolons #25

Workflow file for this run

name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
ci-ubuntu:
name: Build on Linux (Ubuntu)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: lukka/get-cmake@latest
- name: install SDL2
run: sudo apt update -y && sudo apt install -y libsdl2-dev
- name: install dependencies
run: ./vcpkg.sh
- name: build
run: make build
- name: build
run: make test
ci-mac:
name: Build on MacOS
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
- uses: lukka/get-cmake@latest
- name: install dependencies
run: ./vcpkg.sh
- name: build
run: make build
- name: build
run: make test
fmt:
name: Formatting Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Run clang-format"
uses: jidicula/[email protected]
with:
clang-format-version: '18'