Blob: ci.yml

Blob id: a474927405691b1f8e6b3e12891269f8435dcf31

Size: 544 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: CI

on: [pull_request]

jobs:
  ci:
    runs-on: ubuntu-latest
    name: CI for Pull Request
    steps:
    - name: Checkout the source code
      uses: actions/checkout@v3
      with:
        path: src/src

    - name: CI
      uses: bluez/action-ci@main
      with:
        task: ci
        base_folder: src
        space: user
        github_token: ${{ secrets.ACTION_TOKEN }}
        email_token: ${{ secrets.EMAIL_TOKEN }}
        patchwork_token: ${{ secrets.PATCHWORK_TOKEN }}
        patchwork_user: ${{ secrets.PATCHWORK_USER }}