Skip to content
Open
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
8 changes: 0 additions & 8 deletions .eslintrc.yml

This file was deleted.

58 changes: 29 additions & 29 deletions .github/workflows/action-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Action CI

on:
schedule:
- cron: "0 6 * * *"
- cron: "0 8 * * *"
push:
pull_request:

Expand All @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]
name: Action CI
steps:
- name: Check out source repository
Expand All @@ -26,32 +26,32 @@ jobs:
- name: Python environment report
run: python -c "import sys; print(sys.version)"
- name: Action CI - default
uses: f-actions/font-bakery@master
uses: ./
with:
subcmd: "--help"
# - name: Action CI - default with single file
# uses: f-actions/font-bakery@master
# with:
# subcmd: "check-profile"
# args: "tests/check-test.py"
# path: "tests/NotoSans-Regular.ttf"
# - name: Action CI - default with wildcard path
# uses: f-actions/font-bakery@master
# with:
# subcmd: "check-profile"
# args: "tests/check-test.py"
# path: "tests/*.ttf"
# - name: Action CI - fontbakery main branch version
# uses: f-actions/font-bakery@master
# with:
# subcmd: "check-profile"
# args: "tests/check-test.py"
# path: "tests/*.ttf"
# version: "main"
# - name: Action CI - fontbakery pinned release version
# uses: f-actions/font-bakery@master
# with:
# subcmd: "check-profile"
# args: "tests/check-test.py"
# path: "tests/*.ttf"
# version: "0.7.25"
- name: Action CI - default with single file
uses: ./
with:
subcmd: "check-profile"
args: "tests/check-test.py"
path: "tests/NotoSans-Regular.ttf"
- name: Action CI - default with wildcard path
uses: ./
with:
subcmd: "check-profile"
args: "tests/check-test.py"
path: "tests/*.ttf"
- name: Action CI - fontbakery main branch version
uses: ./
with:
subcmd: "check-profile"
args: "tests/check-test.py"
path: "tests/*.ttf"
version: "main"
- name: Action CI - fontbakery pinned release version
uses: ./
with:
subcmd: "check-profile"
args: "tests/check-test.py"
path: "tests/*.ttf"
version: "0.13.2"
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["18"]
node: ["20"]
name: Node ${{ matrix.node }} eslint run
steps:
- uses: actions/checkout@v3
Expand Down
Loading