Remove script autojoinem.py (moved to unofficial scripts, not needed … #297
Workflow file for this run
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: CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
check-scripts: | |
runs-on: ubuntu-22.04 | |
name: Check scripts | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: pip install weechat-script-lint | |
- name: Check scripts | |
run: make partial-check |