Skip to content

Nuevos indicadores de ESIOS (Octubre 2023) #19

Nuevos indicadores de ESIOS (Octubre 2023)

Nuevos indicadores de ESIOS (Octubre 2023) #19

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python 3.11
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install coveralls
pip install -e .
pip install --upgrade mamba
- name: Test with mamba
env:
ESIOS_TOKEN: ${{secrets.ESIOS_TOKEN}}
run: |
export ESIOS_TOKEN="$ESIOS_TOKEN"
mamba --enable-coverage