Skip to content

Update config.toml

Update config.toml #5

Workflow file for this run

name: Lint
on:
push:
pull_request:
jobs:
lint-python:
name: Lint Python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout repository
- uses: chartboost/ruff-action@v1
name: Run Ruff
lint-rust:
name: Lint Rust
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
working-directory: lib/tools_2048
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Update Rust
run: rustup update
- name: Build
run: cargo build
- name: Clippy
run: cargo clippy -- -D warnings