-
Notifications
You must be signed in to change notification settings - Fork 5
60 lines (55 loc) · 1.67 KB
/
generation-test.yml
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
---
# This workflow will install Python dependencies and run tests
# across operating systems, select versions of Python, and user + dev environments
# For more info see:
# https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python 🐍 CI/CD tests for ttl generation
on:
push:
paths-ignore: # prevents workflow execution when only these types of files are modified
- "**.md" # wildcards prevent file in any repo dir from trigering workflow
- "**.bib"
- "**.ya?ml"
- "LICENSE"
- ".gitignore"
pull_request:
types: [opened, reopened] # excludes syncronize to avoid redundant trigger from commits on PRs
paths-ignore:
- "**.md"
- "**.bib"
- "**.ya?ml"
- "LICENSE"
- ".gitignore"
workflow_dispatch: # also allow manual trigger, for testing purposes
jobs:
generate_script:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# general Python setup
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
# install
- name: Install package
run: |
pip install .
# generate the ttl files
- name: generate
run: |
sh scripts/generate.sh
deploy_to_server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: deploy
uses: mdallasanta/[email protected]
with:
host: ${{ secrets.HOST }}
user: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
port: ${{ secrets.PORT }}
local: 'sentier_vocab/output/'
remote: sentier_vocab
scp_options: -r