Skip to content

Commit 249a8ea

Browse files
authored
Update CI configurations, Broken section links (#164)
* update readme, mkdocs urls * remove YAML for Travis CI * ci: create test workflow for MkDocs * mkdocs: fix introduction, references
1 parent e84fb6a commit 249a8ea

File tree

4 files changed

+28
-37
lines changed

4 files changed

+28
-37
lines changed

.github/workflows/test-mkdocs.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: "Test MkDocs"
2+
3+
on: [push, workflow_dispatch]
4+
5+
permissions:
6+
contents: read
7+
8+
jobs:
9+
mkdocs:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-python@v4
14+
with:
15+
python-version: 3.11
16+
architecture: x64
17+
18+
- name: "Run pip install"
19+
run: >
20+
python3 -m pip install -r requirements.txt
21+
- name: "Run MkDocs(build)"
22+
run: >
23+
python3 -m mkdocs build --site-dir _site

.travis.yml

-30
This file was deleted.

ReadMe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
> -- _비야네 스트롭스트룹 (Bjarne Stroustrup)_
66
77
* ISO C++ 최신버전(영문): https://github.com/isocpp/CppCoreGuidelines
8-
* 한글: https://www.cppkorea.org/CppCoreGuidelines
8+
* 한글: http://cppkorea.github.io/CppCoreGuidelines/
99

1010
## C++ 핵심 가이드라인 한글화 프로젝트
1111

mkdocs.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
site_name: C++ 핵심 가이드라인
33
site_description: "C++ 핵심 가이드라인 한글화 프로젝트"
44
site_author: C++ Korea
5-
site_url: http://www.cppkorea.org/CppCoreGuidelines
5+
site_url: https://cppkorea.github.io/CppCoreGuidelines/
66

77
repo_name: CppKorea/CppCoreGuidelines
8-
repo_url: http://github.com/CppKorea/CppCoreGuidelines
8+
repo_url: https://github.com/CppKorea/CppCoreGuidelines
99

1010
copyright: "Copyright (c) Standard C++ Foundation and its contributors"
1111

@@ -42,10 +42,8 @@ theme:
4242
docs_dir: sections
4343
nav:
4444
- Overview: home.md
45-
- Introduction:
46-
- Introduction.md
47-
- References:
48-
- References.md
45+
- Introduction: Introduction.md
46+
- References: References.md
4947
- Sections:
5048
- Architecture: Architecture.md
5149
- Class: Class.md

0 commit comments

Comments
 (0)