Import new tokens - 2024-09-24-1642 #664
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: Run Tests | |
on: pull_request | |
env: | |
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true | |
jobs: | |
run_tests: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
container: | |
image: perl:5.28.1 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install system dependencies | |
run: | | |
echo "deb http://archive.debian.org/debian stretch main contrib non-free" > /etc/apt/sources.list | |
apt update -y | |
apt install gettext -y | |
- name: Install Perl dependencies | |
run: cpanm --installdeps . | |
- name: Run tests | |
run: prove -r t |