Skip to content

Actions(deps): Bump actions/setup-python from 4.7.1 to 5.0.0 #78

Actions(deps): Bump actions/setup-python from 4.7.1 to 5.0.0

Actions(deps): Bump actions/setup-python from 4.7.1 to 5.0.0 #78

Workflow file for this run

# Copyright (c) 2021 Sebastian Pipping <sebastian@pipping.org>
# Licensed under the MIT license, see file COPYING for the full text
name: Run tests
on:
- pull_request
- push
jobs:
run-tests:
name: Run tests
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Python 3.9
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: '3.9'
- name: Download necessary databases
run: |-
set -x
for name in de de-en en en-de wikdict; do
basename="${name}.sqlite3"
wget -q -O "data/dict/${basename}" "https://download.wikdict.com/dictionaries/wdweb/${basename}"
done
- name: Run tests
run: |-
./run_dev.sh test