mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00

* refactor: rewrite xontribs/jedi.xsh -> xontribs/jedi.py to take advantage of python tooling * chore: update elm ci workflow * test: update test for jedi xontrib
36 lines
881 B
YAML
36 lines
881 B
YAML
name: Check Elm
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: Python 3.7 Elm Check Ubuntu
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: ~/conda_pkgs_dir
|
|
key: elm-env-${{ hashFiles('ci/environment-elm.yml') }}
|
|
restore-keys: |
|
|
elm-env-
|
|
- name: Setup conda
|
|
uses: conda-incubator/setup-miniconda@v2
|
|
with:
|
|
activate-environment: elm-xonsh-test
|
|
environment-file: ci/environment-elm.yml
|
|
auto-update-conda: true
|
|
python-version: 3.7
|
|
condarc-file: ci/condarc.yml
|
|
- shell: bash -l {0}
|
|
run: |
|
|
python -m pip install . --no-deps
|
|
pushd xonsh/webconfig
|
|
python -m xonsh elm-compile.xsh
|
|
popd
|