Skip to content

Commit

Permalink
Add trunk (#69)
Browse files Browse the repository at this point in the history
Part of #63
  • Loading branch information
Mctalian authored Aug 28, 2024
1 parent 969ecce commit 55a2337
Show file tree
Hide file tree
Showing 67 changed files with 3,887 additions and 3,703 deletions.
29 changes: 14 additions & 15 deletions .github/workflows/i18n-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,21 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"

- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Install Python dependencies
run: pip install -r requirements.txt

- name: Run translation check script
run: python .scripts/missing_translation_check.py

- name: Create or Update Issues
run: python .scripts/create_or_update_i18n_issues.py
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
- name: Run translation check script
run: python .scripts/missing_translation_check.py

- name: Create or Update Issues
run: python .scripts/create_or_update_i18n_issues.py
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
48 changes: 24 additions & 24 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,40 +10,40 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"

- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Install Python dependencies
run: pip install -r requirements.txt

- name: Run translation check script
run: python .scripts/missing_translation_check.py
- name: Run translation check script
run: python .scripts/missing_translation_check.py

- name: Check for Hard-coded strings
run: python .scripts/hardcode_string_check.py
- name: Check for Hard-coded strings
run: python .scripts/hardcode_string_check.py

run_tests:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4

- uses: leafo/gh-actions-lua@v10
- uses: leafo/gh-actions-luarocks@v4
- uses: leafo/gh-actions-lua@v10
- uses: leafo/gh-actions-luarocks@v4

- name: Install luarock dependencies
run: luarocks make --local rpglootfeed-1-1.rockspec
- name: Install luarock dependencies
run: luarocks make --local rpglootfeed-1-1.rockspec

- name: Run Tests
run: make test-ci
- name: Run Tests
run: make test-ci

- uses: actions/upload-artifact@v4
with:
name: luacov-html
path: luacov-html/
- uses: actions/upload-artifact@v4
with:
name: luacov-html
path: luacov-html/
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Package and release
on:
push:
tags:
- '**'
- "**"

jobs:
release:
Expand Down
Loading

0 comments on commit 55a2337

Please sign in to comment.