Skip to content

Commit e4aecd9

Browse files
committed
removendo submodulo
1 parent 8e5c13e commit e4aecd9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+8354
-7
lines changed

.gitmodules

-6
This file was deleted.

themes/binario

-1
This file was deleted.

themes/binario/.editorconfig

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = tab
7+
end_of_line = lf
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.{json,yaml,yml,toml,md,babelrc,eslintrc,stylelintrc}]
15+
indent_style = space
16+
indent_size = 2
17+
18+
[layouts/**.{html,svg}]
19+
insert_final_newline = false
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
paths-ignore:
8+
- "README.md"
9+
pull_request:
10+
paths-ignore:
11+
- "README.md"
12+
13+
jobs:
14+
lint:
15+
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
node:
19+
- '14.x'
20+
21+
steps:
22+
- uses: actions/checkout@v2
23+
- uses: actions/setup-node@v1
24+
with:
25+
node-version: ${{ matrix.node }}
26+
27+
- name: Install npm dependencies
28+
run: npm ci
29+
30+
- name: Lint
31+
run: npm run lint
32+
33+
test-hugo:
34+
runs-on: ubuntu-latest
35+
strategy:
36+
matrix:
37+
hugo:
38+
- '0.54.0' # min version
39+
- '0.58.2' # https://github.com/gohugoio/hugoThemes/issues/682
40+
- '0.59.1' # last major version without goldmark renderer
41+
- '0.60.1' # first major version with goldmark renderer
42+
- '0.76.5' # https://github.com/gohugoio/hugo/issues/7822
43+
# - '0.80.0' # https://github.com/gohugoio/hugo/issues/8340
44+
- '0.86.1' # https://github.com/gohugoio/hugo/issues/9150
45+
- '0.93.3' # https://github.com/gohugoio/hugo/commit/837fdfdf45014e3d5ef3b00b01548b68a4489c5f
46+
- 'latest'
47+
fail-fast: true
48+
49+
steps:
50+
- uses: actions/checkout@v2
51+
52+
# https://github.com/peaceiris/actions-hugo (community action)
53+
- name: Run Hugo ${{ matrix.hugo }}
54+
uses: peaceiris/actions-hugo@v2
55+
with:
56+
hugo-version: ${{ matrix.hugo }}
57+
# extended: true
58+
59+
- name: Build with Hugo ${{ matrix.hugo }}
60+
working-directory: exampleSite
61+
run: |
62+
function ver { printf "%03d%03d%03d" $(echo "$1" | tr '.' ' '); }
63+
HUGO_VERSION=$(hugo version | grep -Eo '[0-9]\.[0-9]+\.[0-9]+')
64+
# The option changed in 0.93.0: https://github.com/gohugoio/hugo/releases/tag/v0.93.0
65+
I18N_OPT=$([ $(ver $HUGO_VERSION) -lt $(ver 0.93.0) ] && echo "--i18n-warnings" || echo "--printI18nWarnings")
66+
HUGO_THEME="Binario" hugo --themesDir ../.. $I18N_OPT -v

themes/binario/.gitignore

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Node/npm
2+
node_modules/
3+
npm-debug.log
4+
5+
# IDE
6+
.idea
7+
*.sublime-project
8+
*.sublime-workspace
9+
.vscode/*
10+
11+
# OS
12+
._*
13+
Thumbs.db
14+
.DS_Store
15+
.Trashes
16+
.Spotlight-V100
17+
.AppleDouble
18+
.LSOverride
19+
Desktop.ini

0 commit comments

Comments
 (0)