Skip to content

Commit

Permalink
Merge pull request #172 from ktaletsk/github_actions_placeholder
Browse files Browse the repository at this point in the history
Simple placeholder Github Action
  • Loading branch information
bollwyvl committed Jul 14, 2021
2 parents 3ddedf8 + 3799720 commit e6b3c5f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build

on:
push:
branches: master
pull_request:
branches: '*'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
- name: Install node
uses: actions/setup-node@v2.2.0
with:
node-version: '14.x'
- name: Run a one-line script
run: echo Hello, world!
- name: Install dependencies
run: python -m pip install -U jupyter_packaging~=0.10.4 jupyterlab~=3.0.16 pip wheel

0 comments on commit e6b3c5f

Please sign in to comment.