mirror of
https://github.com/MiSTer-devel/Distribution_MiSTer.git
synced 2026-04-19 03:04:16 +00:00
21 lines
305 B
YAML
21 lines
305 B
YAML
name: Test Scripts
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
ref: develop
|
|
- name: Test Calculate Db
|
|
run: |
|
|
set -euo pipefail
|
|
cd .github/tests
|
|
./test_calculate_db.py
|