bump to version v1.9.0 #53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
paths: | |
- '**.bolt' | |
- '**.json' | |
- 'beet.yaml' | |
pull_request: | |
workflow_dispatch: | |
env: | |
VERSION: "1.20" | |
NAME: "2mal3s-Recipes" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install Poetry | |
uses: snok/install-poetry@v1.3.3 | |
with: | |
virtualenvs-in-project: true | |
- name: Setup cache | |
id: cached-poetry-dependencies | |
uses: actions/cache@v3 | |
with: | |
path: .venv | |
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} | |
- name: Install dependencies | |
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
run: poetry install | |
- name: Build datapack | |
run: poetry run beet | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: artifact | |
path: | | |
build/${{ env.NAME }} | |
mc-commands: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: artifact | |
- name: Check minecraft commands | |
uses: mcbeet/check-commands@v1 | |
with: | |
version: "0.73.0" | |
source: "." | |
minecraft: ${{ env.VERSION }} | |
stats: true | |
json: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
- name: Download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: artifact | |
- name: Install jsonlint | |
run: npm install -g jsonlint | |
- name: Lint json files | |
run: for file in $(find . -name '*.json'); do jsonlint $file -c -q; done |