Skip to content

on macos use md5 instead of md5sum #360

on macos use md5 instead of md5sum

on macos use md5 instead of md5sum #360

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
windows:
runs-on: windows-latest
steps:
- uses: lukka/get-cmake@latest
- uses: actions/checkout@v4
with:
submodules: true
- name: bla
run: md5sum README.md
mac:
runs-on: macos-latest
steps:
- uses: lukka/get-cmake@latest
- uses: actions/checkout@v4
with:
submodules: true
- name: bla
run: md5 README.md
linux:
runs-on: ubuntu-latest
steps:
- uses: lukka/get-cmake@latest
- uses: actions/checkout@v4
with:
submodules: true
- name: bla
run: md5sum README.md