誤記修正。 #3
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
# .github/workflows/build-linux.yml | |
# Last modified: 05-Feb-2024 (kobayasy) | |
name: Linux | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build and install | |
run: | | |
mkdir build | |
cd build | |
../src/configure --prefix=$HOME --enable-warnall | |
make install distclean | |
cd .. | |
rmdir build | |
- name: Run | |
run: | | |
~/bin/printbar --help |