Skip to content

draft: Use git tag for package versioning #262

draft: Use git tag for package versioning

draft: Use git tag for package versioning #262

Workflow file for this run

name: build_conda
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
container:
image: continuumio/miniconda3:latest
steps:
- name: Checkout Files
uses: actions/checkout@v4
- name: Run Docker to Build
run: |
conda config --append channels conda-forge
conda config --append channels noaa-gfdl
conda install conda-build conda-verify
git config --global --add safe.directory /__w/fre-cli/fre-cli
git describe
git log -1 --format='%H'
conda build .
- name: Pylint All Code
continue-on-error: true
run: |
python -m pip install --upgrade pip
pip install pylint
pylint --clear-cache-post-run y ./fre