Skip to content

Format: add .clang-format file #7

Format: add .clang-format file

Format: add .clang-format file #7

Workflow file for this run

"""name: Make

Check failure on line 1 in .github/workflows/make.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/make.yml

Invalid workflow file

You have an error in your yaml syntax on line 1
on: [pull_request]
jobs:
Make:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Make
run: |
make clean
make
- name: Upload executable
uses: actions/upload-artifact@v4
with:
# suppose we compiled our game and named it 'stocksim'
name: stocksim
path: stocksim
compression-level: 9
retention-days: 90
if-no-files-found: error
"""