Correct lore writing if there is more than one known drop #2
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
# Exercise src/Makefile.nmake. | |
name: nmake | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
build: | |
name: Stock | |
runs-on: windows-latest | |
steps: | |
- name: Add nmake and compiler to PATH | |
uses: TheMrMilchmann/setup-msvc-dev@v3 | |
with: | |
arch: x86 | |
- name: Clone Project | |
uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
cd src | |
nmake /f Makefile.nmake |