-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (41 loc) · 821 Bytes
/
CI.yml
File metadata and controls
41 lines (41 loc) · 821 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
name: CI
env:
DEBUG: napi:*
APP_NAME: berry
CARGO_INCREMENTAL: '0'
CARGO_PROFILE_TEST_DEBUG: 0
CARGO_TERM_COLOR: always
permissions:
contents: write
id-token: write
'on':
push:
branches:
- main
tags-ignore:
- '**'
paths-ignore:
- '**/*.md'
- LICENSE
- '**/*.gitignore'
- .editorconfig
- docs/**
pull_request: null
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
uses: ./.github/workflows/lint.yml
test:
uses: ./.github/workflows/test.yml
# build:
# uses: ./.github/workflows/build.yml
# test-bindings:
# needs:
# - build
# uses: ./.github/workflows/test-bindings.yml
# publish:
# needs:
# - test-bindings
# uses: ./.github/workflows/publish.yml