Skip to content

Commit e6b3c5f

Browse files
authored
Merge pull request #172 from ktaletsk/github_actions_placeholder
Simple placeholder Github Action
2 parents 3ddedf8 + 3799720 commit e6b3c5f

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: master
6+
pull_request:
7+
branches: '*'
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/[email protected]
15+
- name: Install node
16+
uses: actions/[email protected]
17+
with:
18+
node-version: '14.x'
19+
- name: Run a one-line script
20+
run: echo Hello, world!
21+
- name: Install dependencies
22+
run: python -m pip install -U jupyter_packaging~=0.10.4 jupyterlab~=3.0.16 pip wheel

0 commit comments

Comments
 (0)