fix: Typos and truncated code snippet in standard libraries blog #111
Workflow file for this run
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: Check Blogposts | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: 'true' | |
- name: "Install Node.js" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 21.1 | |
- name: "Install Dafny" | |
run: | | |
git clone https://github.com/dafny-lang/dafny.git | |
cd dafny && make z3-mac && make exe | |
- name: "Test Blogposts" | |
run: | | |
export PATH=/Users/runner/work/blog/blog/dafny/Binaries:$PATH | |
make check |