-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (39 loc) · 1019 Bytes
/
check.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
on:
pull_request:
push:
schedule:
- cron: "0 12 */3 * *"
name: Check
jobs:
test-run:
name: Test VKMS - ${{ matrix.os }}
if: github.actor != 'dependabot[bot]'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
defaults:
run:
shell: bash
steps:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install VKMS
run: pip install .
- name: Run VKMS
run: |
vkms -i ${{ secrets.VKMS_INCLUDE }} dump --token ${{ secrets.VKMS_ACCESS_TOKEN }} --export-json
vkms -i ${{ secrets.VKMS_INCLUDE }} parse -f txt
vkms -i ${{ secrets.VKMS_INCLUDE }} parse -f html
vkms -i ${{ secrets.VKMS_INCLUDE }} atch
rm -rf vkms-result