-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (30 loc) · 993 Bytes
/
night.yaml
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
name: Night
on:
workflow_dispatch:
schedule:
- cron: '20 4 * * 2'
push:
branches:
- fix-night-workflow
concurrency: night
jobs:
night:
name: Night
runs-on: ubuntu-22.04
steps:
- name: (PREPARE) Checkout repository
uses: actions/checkout@v3
with:
lfs: true
- name: (PREPARE) Update Vintner
run: |
rm -f assets/vintner-linux-x64.xz
rm -f assets/vintner-linux-x64
wget https://github.com/OpenTOSCA/opentosca-vintner/releases/download/latest/vintner-linux-x64.xz -P assets
- name: (PREPARE) Log Vintner Version
shell: bash
run: ./task vintner --version
- name: (PREPARE) Pull Example Dependencies
run: ./task pull
- name: (TEST) Execute Tests
run: ./task test