fix: remove Boost (port BSTObjectArena.h
from CommonLibF4) (#257)
#252
This file contains 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: Maintenance | |
on: | |
push: | |
branches: main | |
paths: | |
- "src/**" | |
- "include/**" | |
- ".github/workflows/**" | |
workflow_dispatch: | |
concurrency: | |
group: maintenance | |
cancel-in-progress: true | |
jobs: | |
maintenance: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'Starfield-Reverse-Engineering' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Update Starfield.h | |
shell: pwsh | |
run: "& ${{ github.workspace }}/.github/make-directives.ps1 ${{ github.workspace }}" | |
- name: Run clang-format | |
uses: DoozyX/[email protected] | |
with: | |
source: "." | |
exclude: "./docs" | |
extensions: "c,cc,cpp,cppm,cxx,h,hpp,hxx,inl,inc,ixx,mxx" | |
clangFormatVersion: 17 | |
inplace: True | |
- name: Add & Commit | |
id: registry | |
uses: EndBug/add-and-commit@v9 | |
with: | |
default_author: github_actions | |
message: "ci: maintenance" |