Skip to content

antarcticrainforest is doing some smoke tests #274

antarcticrainforest is doing some smoke tests

antarcticrainforest is doing some smoke tests #274

Workflow file for this run

name: Tests
run-name: ${{ github.actor }} is doing some smoke tests
on: [push, pull_request, workflow_call]
jobs:
Smoke-tests:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Create conda env
# https://github.com/marketplace/actions/setup-micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-name: freva-web
environment-file: conda-env.yml
cache-environment: false
cache-downloads: false
init-shell: bash
- name: Generate self signed certs
run: >
micromamba run -n freva-web python docker/config/dev-utils.py gen-certs
- name: Set up services
run: docker compose up -d --remove-orphans
- name: Lint js code and python
run: micromamba run -n freva-web make lint
- name: Run build checks for js and python smoke tests
run: micromamba run -n freva-web make tests