Update README.md #86
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
name: testbuild | |
on: [push] | |
jobs: | |
run-testbuild: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
path: skse64 | |
- uses: actions/checkout@v2 | |
with: | |
path: common | |
repository: ianpatt/common | |
- run: cmake -B common/build -S common -DCMAKE_INSTALL_PREFIX=extern common | |
- run: cmake --build common/build --config Release --target install | |
- run: cmake -B skse64/build -S skse64 -DCMAKE_INSTALL_PREFIX=extern skse64 | |
- run: cmake --build skse64/build --config Release |