-
Notifications
You must be signed in to change notification settings - Fork 2
37 lines (34 loc) · 959 Bytes
/
ci.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
name: CI
on:
push: { branches: [ "main" ] }
pull_request:
workflow_dispatch:
concurrency:
# Run everything on main, most-recent on PR builds
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
container: graphcore/pytorch:3.3.0-ubuntu-20.04-20230703
timeout-minutes: 25
steps:
- uses: actions/checkout@v3
- name: Install dev-requirements
run: |
apt-get update
apt-get install -y git
source /opt/setup-bash-env.sh
pip install -r requirements-dev.txt --no-cache-dir
shell: bash
- name: Run CI
run: |
source /opt/setup-bash-env.sh
./dev ci
shell: bash
- name: Publish docs
if: ${{github.ref == 'refs/heads/main'}}
uses: Cecilapp/[email protected]
env: { GITHUB_TOKEN: "${{ github.token }}" }
with:
build_dir: docs/build/html/