Print unitweight as part of the build process. For developers and deb… #468
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: "Docs" | |
on: | |
push: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Autotools & configure | |
run: ./autogen.sh && ./configure | |
- name: Build everything | |
run: make -j4 | |
- name: Check tarball integrity | |
run: make distcheck |