mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
30 lines
685 B
YAML
30 lines
685 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
|
|
- name: Setup conda
|
|
uses: conda-incubator/setup-miniconda@v1
|
|
with:
|
|
activate-environment: elm-xonsh-test
|
|
environment-file: ci/environment-elm.yml
|
|
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
|