bumped changelog version #57
Workflow file for this run
This file contains hidden or 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 scripts | |
on: | |
push: | |
paths: | |
- usr/lib/python3/dist-packages/stdisplay/ | |
- .github/workflows/lint.yml | |
- run-tests | |
pull_request: | |
paths: | |
- usr/lib/python3/dist-packages/stdisplay/ | |
- .github/workflows/lint.yml | |
- run-tests | |
jobs: | |
lint: | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- image: debian:stable | |
- image: debian:testing | |
- image: debian:unstable | |
- image: ubuntu:latest | |
- image: ubuntu:rolling | |
container: | |
image: ${{ matrix.image }} | |
steps: | |
- name: Install linters | |
run: | | |
apt-get update --error-on=any | |
apt-get dist-upgrade -y | |
apt-get install -y git python3-pytest pylint mypy black ncurses-term \ | |
build-essential debhelper dh-python dh-apparmor | |
git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- uses: actions/checkout@v4 | |
- name: Test build | |
run: | | |
dpkg-buildpackage -b -i -us -uc | |
apt-get install -y ../helper-scripts*.deb | |
- name: Run linters | |
run: | | |
set -o xtrace | |
./run-tests | |
git clone https://github.com/nickboucher/trojan-source | |
./unicode-testscript |