Skip to content

[pull] master from increments:master #5

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

Merged
merged 38 commits into from
Jan 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
2e74600
Add Docswell to allowing embed script/iframe list
ku-suke Oct 10, 2022
1b106a4
auto correct style
ku-suke Oct 12, 2022
86b94fd
Fix GitHub Actions can't be executed when public fork
mziyut Oct 13, 2022
7a2bb74
Merge pull request #123 from increments/fix-github-actions-can-not-be…
mziyut Oct 13, 2022
5fae177
Merge pull request #122 from ku-suke/add-docswell-embed
getty104 Oct 14, 2022
6353fa8
Release v0.43.0
getty104 Oct 14, 2022
427b660
Merge pull request #124 from increments/release-v0.43.0
getty104 Oct 14, 2022
333d311
Support Figma embed script
getty104 Oct 15, 2022
4696cf9
Fix bug of checkbox filter when space exists after checkbox mark
wataru86 Oct 20, 2022
2781f96
Merge pull request #126 from increments/fix-checkbox-space
wataru86 Oct 21, 2022
34c0b40
Merge pull request #125 from increments/add-figma-embed-script
wataru86 Oct 21, 2022
c93b4a2
Release v0.44.0
wataru86 Oct 21, 2022
271cde1
Merge pull request #127 from increments/release-v0.44.0
wataru86 Oct 24, 2022
ef0664e
Rename pagkage name
wataru86 Nov 10, 2022
5825349
Merge pull request #128 from increments/rename-package-name
wataru86 Nov 10, 2022
40aaa61
Bump rubocop from 1.27.0 to 1.39.0 and apply rubocop auto correct
Nov 14, 2022
bc89369
Merge pull request #129 from increments/rubocop-auto-correct
kyntk Nov 15, 2022
c28ab5a
Release v0.44.1
Nov 16, 2022
569992f
Merge pull request #132 from increments/release-v0.44.1
kyntk Nov 16, 2022
2353ae9
Drop ruby 2.6 support
Nov 17, 2022
27f3b66
Merge pull request #135 from increments/drop-support-ruby-2.6
kyntk Nov 17, 2022
158ae61
Add filters related to Qiita Marker
Nov 11, 2022
7c9729e
Replace markdown parser from Greenmat to Qiita Marker
Nov 15, 2022
497d468
Remove Greenmat
Nov 15, 2022
3cc1f7b
Fix bug on rendering loose tasklist
Nov 15, 2022
f3ba421
Update features in README.md
Nov 16, 2022
b641662
Update CHANGELOG.md
Nov 15, 2022
2a90ff9
Merge pull request #131 from increments/change-markdown-parser-from-g…
kyntk Nov 18, 2022
92b3ad7
Release v1.0.0
Nov 18, 2022
771a690
Merge pull request #136 from increments/release-v1.0.0
kyntk Nov 21, 2022
d90a2e7
Chenge qiita_marker from development dependency to runtime dependency
Nov 22, 2022
e546b95
Merge pull request #137 from increments/fix-qiita-marker-dependency
kyntk Nov 24, 2022
69c6b97
Release v1.0.1
Nov 24, 2022
a052901
Merge pull request #138 from increments/release-v1.0.1
kyntk Nov 24, 2022
9e3a59b
Allow attributes related to footnotes
Dec 5, 2022
c82ce59
Merge pull request #141 from increments/fix-footnote-attributes
kyntk Dec 5, 2022
c7bc1b8
Release v1.0.2
Dec 5, 2022
894481e
Merge pull request #142 from increments/release-v1.0.2
kyntk Dec 5, 2022
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
38 changes: 25 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,33 @@ permissions:
contents: read

jobs:
codeclimate:
runs-on: ubuntu-latest
steps:
- name: Get branch names
id: branch-name
uses: tj-actions/branch-names@v4.9
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
bundler-cache: true
- name: Test & publish code coverage
if: "${{ env.CC_TEST_REPORTER_ID != '' }}"
uses: paambaati/codeclimate-action@v2.7.5
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
GIT_BRANCH: ${{ steps.branch-name.outputs.current_branch }}
GIT_COMMIT_SHA: ${{ github.sha }}
with:
coverageCommand: bundle exec rake

test:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-18.04', 'ubuntu-latest', 'macos-latest']
ruby: ['2.6', '2.7', '3.0', '3.1']
ruby: ['2.7', '3.0', '3.1']
experimental: [false]
include:
- os: 'ubuntu-latest'
Expand All @@ -25,19 +46,10 @@ jobs:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Get branch names
id: branch-name
uses: tj-actions/branch-names@v4.9
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v2.7.5
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
GIT_BRANCH: ${{ steps.branch-name.outputs.current_branch }}
GIT_COMMIT_SHA: ${{ github.sha }}
with:
coverageCommand: bundle exec rake
- name: Test
run: bundle exec rake
4 changes: 0 additions & 4 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ AllCops:
Metrics/ClassLength:
Enabled: false

Style/AsciiComments:
Exclude:
- benchmark/**/*

Style/Documentation:
Enabled: false

Expand Down
Loading