Fix sleep workaround with Xorg #124
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: Pull request checks | |
on: | |
pull_request: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
centos_stream9: | |
runs-on: ubuntu-latest | |
container: | |
image: quay.io/centos/centos:stream9 | |
env: | |
PYLINT: pylint-3 | |
steps: | |
- name: Enable EPEL and install pylint | |
run: | | |
dnf install -y 'dnf-command(config-manager)' | |
dnf config-manager --set-enabled crb | |
dnf install -y epel-release epel-next-release | |
dnf install -y python3-pylint python3-libxml2 git | |
- name: Checkout change | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
path: anabot | |
- name: Build base test | |
run: | | |
pushd $GITHUB_WORKSPACE/anabot/tests | |
./run_suite.sh | |
popd |