-
Notifications
You must be signed in to change notification settings - Fork 68
84 lines (73 loc) · 2.03 KB
/
tests.yml
File metadata and controls
84 lines (73 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# -*- coding: utf-8 -*-
#
# This file is part of Invenio.
# Copyright (C) 2016-2025 CERN.
# Copyright (C) 2022 Graz University of Technology.
#
# Invenio is free software; you can redistribute it and/or modify
# it under the terms of the MIT License; see LICENSE file for more details.
name: CI
on:
push:
branches:
- master
- "feature/*"
pull_request:
branches:
- master
- "feature/*"
schedule:
- cron: "0 3 * * 6"
workflow_dispatch:
inputs:
reason:
description: "Reason"
required: false
default: "Manual trigger"
jobs:
Python:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.9"]
db-service: [postgresql14]
search-service: [opensearch2]
env:
DB: ${{ matrix.db-service }}
SEARCH: ${{ matrix.search-service }}
EXTRAS: tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Docker images
# We're using the fork by AndreKurait, which has bumped the "cache" action
uses: AndreKurait/docker-cache@0fe76702a40db986d9663c24954fc14c6a6031b7 # 0.6.0
with:
key: docker-${{ runner.os }}-${{ hashFiles('docker-services.yml') }}
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install system dependencies
uses: awalsh128/cache-apt-pkgs-action@4c82c3ccdc1344ee11e9775dbdbdf43aa8a5614e # v1.5.1
with:
packages: libkrb5-dev libvips-dev
- name: Install Python dependencies
run: |
uv sync --locked
uv pip list
- name: Run tests
working-directory: ./site
run: ./run-tests.sh
JS:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js v16.x
uses: actions/setup-node@v4
with:
node-version: v16.x
- name: Run eslint test
run: ./run-js-linter.sh -i