Test weapon configuration on the user interface #14
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: Checking code functionality | |
on: [push] | |
jobs: | |
ci-test: | |
runs-on: ubuntu-latest | |
container: fedorapython/fedora-python-tox:latest | |
strategy: | |
fail-fast: false | |
matrix: | |
tox-env: ["py310", "py311", "py312"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install the supporting dependencies | |
run: | | |
dnf install libxkbcommon libglvnd-egl dbus-libs xorg-x11-server-Xvfb --assumeyes | |
- name: Install the base dependencies | |
run: | | |
python3 -m pip install --upgrade poetry tox | |
- name: Check the functionality of the code | |
run: | | |
tox -e ${{ matrix.tox-env }} |