-
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (34 loc) · 697 Bytes
/
Copy pathintegration.yml
File metadata and controls
44 lines (34 loc) · 697 Bytes
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
name: Integration
on:
push:
branches:
- '**'
workflow_dispatch:
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Install
run: cargo install --path .
- name: Info
run: |
gh --version
gh auth status
twinkle --deps
- run: rm -Rf .git/
- name: Test `init`
run: |
cd src/tests/integration
./test_init.sh
- name: Test `clone`
run: |
cd src/tests/integration
./test_clone.sh
- name: Test `sync`
run: |
cd src/tests/integration
./test_sync.sh