Skip to content

remove from json

remove from json #4

Workflow file for this run

name: Build ArKr
on:
push:
branches:
- main
paths:
- '**/*.cpp'
- '**/*.hpp'
- '**/*.c'
- '**/*.h'
- '**/*.yml'
pull_request:
branches:
- main
paths:
- '**/*.cpp'
- '**/*.hpp'
- '**/*.c'
- '**/*.h'
- '**/*.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Compile ArKr
run: g++ ./arkr.cpp -o arkr
- name: Upload ArKr binary
uses: actions/upload-artifact@v4
with:
name: arkr-binary
path: ./arkr