mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 07:17:17 +00:00
11 lines
175 B
Bash
Executable File
11 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
# Install dependencies and run test in container
|
|
|
|
set -ex
|
|
|
|
# install dependencies
|
|
pacman --noconfirm -Syyu base-devel python-tox
|
|
|
|
# run test and check targets
|
|
tox
|