Skip to content

feat: new slotmap implementation #88

feat: new slotmap implementation

feat: new slotmap implementation #88

Workflow file for this run

name: C/C++ CI
on:
push:
branches: "**"
pull_request:
branches: "**"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: init
run: ./scripts/init.sh
- name: build
run: ./scripts/build.py main debug
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: init
run: ./scripts/init.sh
- name: test
run: ./scripts/test.py
benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: init
run: ./scripts/init.sh
- name: test
run: ./scripts/benchmark.py
codeQL-analysis:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: 'cpp'
- name: init
run: ./scripts/init.sh
- name: build
run: ./scripts/build.py main debug
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:'cpp'"