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

test: debugging stuff #1750

Closed
Closed
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
7 changes: 6 additions & 1 deletion .github/actions/test_gem/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,12 @@ runs:
echo "::endgroup::"
done
else
bundle exec rake test
i=0; while bundle exec rake test
do
echo i: $i
((i=i+1))
done
echo i: $i
fi
working-directory: "${{ steps.setup.outputs.gem_dir }}"

Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/ci-markdown-link.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: Markdown Link Check
# name: Markdown Link Check

on:
pull_request:
# on:
# pull_request:

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# jobs:
# markdown-link-check:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4

- name: "Markdown Link Check"
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: '.markdown-link-check.json'
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
# - name: "Markdown Link Check"
# uses: gaurav-nelson/github-action-markdown-link-check@v1
# with:
# config-file: '.markdown-link-check.json'
# use-quiet-mode: 'yes'
# use-verbose-mode: 'yes'
34 changes: 17 additions & 17 deletions .github/workflows/ci-markdownlint.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: Markdown Lint Check
# name: Markdown Lint Check

on:
pull_request:
# on:
# pull_request:

jobs:
markdownlint-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# jobs:
# markdownlint-check:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4

# equivalent cli: markdownlint-cli2 "**/*.md" "#**/CHANGELOG.md" --config .markdownlint.json
- name: "Markdown Lint Check"
uses: DavidAnson/markdownlint-cli2-action@v16
with:
fix: false
globs: |
**/*.md
!**/CHANGELOG.md
continue-on-error: true
# # equivalent cli: markdownlint-cli2 "**/*.md" "#**/CHANGELOG.md" --config .markdownlint.json
# - name: "Markdown Lint Check"
# uses: DavidAnson/markdownlint-cli2-action@v16
# with:
# fix: false
# globs: |
# **/*.md
# !**/CHANGELOG.md
# continue-on-error: true
Loading
Loading