get rid of trailing whitespace and extra newlines #105
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: mac os x default build | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Test on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: install packages | |
run: brew install libnettle automake autoconf | |
- name: bootstrap | |
run: ./bootstrap.sh | |
- name: configure | |
run: ./configure --enable-warnings CXXFLAGS=-std=c++11 | |
- name: make | |
run: make | |
# tests fail because readlink does not understand -f on mac | |
# - name: make check | |
# run: make check | |
# - name: make distcheck | |
# run: make distcheck CXXFLAGS=-std=c++11 | |
- name: Upload a Build Artifact | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
path: '**/*.log' |