add shell script formatting #47
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: fedora 40 | |
"on": | |
push: | |
branches: | |
- main | |
- devel | |
pull_request: | |
jobs: | |
container-test-job: | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:40 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: install packages | |
run: yes | dnf install automake gcc which g++ nettle-devel | |
- name: bootstrap | |
run: ./bootstrap.sh | |
- name: configure | |
run: ./configure --enable-warnings CXXFLAGS=-std=c++17 | |
- name: make | |
run: make -j $(nproc) | |
- name: make check | |
run: make check | |
- name: make distcheck | |
run: make distcheck CXXFLAGS=-std=c++17 | |
- name: store the logs as an artifact | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
path: '**/*.log' |