Skip to content

Commit 5265842

Browse files
committed
Try caching tectonic, rename, swap badge
1 parent bf30576 commit 5265842

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.github/workflows/job.lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check lint
1+
name: lint
22
on: [push, pull_request]
33

44
defaults:

.github/workflows/job.test.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Acceptance tests
1+
name: tests
22
on:
33
push:
44
branches:
@@ -132,6 +132,16 @@ jobs:
132132
- name: Warm up jedi cache
133133
run: python scripts/jedi_cache.py
134134

135+
- name: Cache tectonic cache
136+
uses: actions/cache@v2
137+
with:
138+
# locations for: Linux, MacOS, Windows
139+
path: |
140+
~/.cache/Tectonic
141+
~/Library/Caches/Tectonic
142+
%LOCALAPPDATA%/TectonicProject/Tectonic
143+
key: ${{ runner.os }}-${{ hashFiles('scripts/tectonic_cache.py') }}
144+
135145
- name: Warm up tectonic cache
136146
run: python scripts/tectonic_cache.py
137147

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Language Server Protocol integration for Jupyter(Lab)
22

3-
[![Build Status](https://travis-ci.org/krassowski/jupyterlab-lsp.svg?branch=master)](https://travis-ci.org/krassowski/jupyterlab-lsp) [![Build Status](https://dev.azure.com/krassowskimichal/jupyterlab-lsp/_apis/build/status/jupyterlab-lsp?branchName=master)](https://dev.azure.com/krassowskimichal/jupyterlab-lsp/_build/latest?definitionId=1&branchName=master) [![Documentation Status](https://readthedocs.org/projects/jupyterlab-lsp/badge/?version=latest)](https://jupyterlab-lsp.readthedocs.io/en/latest/?badge=latest) [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/krassowski/jupyterlab-lsp/master?urlpath=lab%2Ftree%2Fexamples%2FPython.ipynb)
3+
[![Build Status](https://travis-ci.org/krassowski/jupyterlab-lsp.svg?branch=master)](https://travis-ci.org/krassowski/jupyterlab-lsp) ![tests](https://github.com/krassowski/jupyterlab-lsp/workflows/tests/badge.svg) [![Documentation Status](https://readthedocs.org/projects/jupyterlab-lsp/badge/?version=latest)](https://jupyterlab-lsp.readthedocs.io/en/latest/?badge=latest) [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/krassowski/jupyterlab-lsp/master?urlpath=lab%2Ftree%2Fexamples%2FPython.ipynb)
44

55
> _This project is still maturing, but you are welcome to check it out, leave feedback and/or a PR_
66

0 commit comments

Comments
 (0)