Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #170

Merged
merged 3 commits into from
Jan 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 24 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Build CI

on: [push, pull_request]
Expand All @@ -7,21 +8,29 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
cc: [ gcc-10, gcc-11, clang-13, clang-14 ]
env:
compiler: [gcc-12, gcc-13, clang-17, clang-18]
env:
PREFIX: /usr/local/bin
CC: ${{ matrix.cc }}
CC: ${{ matrix.compiler }}

steps:
- uses: actions/checkout@v3
- name: CC ver
run: ${CC} -v
- name: make
run: make
- name: make install
run: sudo make install
- name: ldd
run: ldd $PREFIX/mdp
- name: version
run: $PREFIX/mdp -v

- uses: actions/checkout@v3
- name: Install Dependencies
run: |
sudo apt-get update -qq
sudo apt-get install -y \
build-essential \
clang-17 \
clang-18 \
gcc-12 \
gcc-13
- name: CC ver
run: ${CC} -v
- name: make
run: make
- name: make install
run: sudo make install
- name: ldd
run: ldd $PREFIX/mdp
- name: version
run: $PREFIX/mdp -v
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ set correctly. To enjoy mdp's color fading feature:

Horizontal rulers are used as slide separator.

Supports basic markdown formating:
Supports basic markdown formatting:

- line wide markup
- headlines
Expand Down
Loading