Skip to content

Names: Implement stock name generation algorithm (#11) #19

Names: Implement stock name generation algorithm (#11)

Names: Implement stock name generation algorithm (#11) #19

Workflow file for this run

"Commented out since our Makefile is empty"

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
"""name: Make
on:
push:
branches:
- main
pull_request:
jobs:
Make:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Make
run: |
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
"""