-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (41 loc) · 973 Bytes
/
test.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
36
37
38
39
40
41
42
43
name: Test
on:
push:
branches: [ testing ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
merge:
name: Merge
needs: [ test ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: '0'
- name: Merge
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git checkout master
git merge testing
- name: Push
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.PIPELINE_TOKEN }}