forked from conda-incubator/conda-store
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (32 loc) · 877 Bytes
/
conda.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: "Build conda packages"
on:
push:
branches: [main]
pull_request:
branches:
- main
workflow_dispatch:
env:
FORCE_COLOR: "1" # Make tools pretty.
PYTHONUNBUFFERED: "1" # Keep stdout and stderr nice and tidy
permissions:
contents: read # This is required for actions/checkout
jobs:
# Always build & verify package.
build-package:
name: Build & verify package
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# ubuntu 22.04, macos 14, windows 2022
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
steps:
- name: "Checkout Repository 🛎"
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: "Check conda builds 📦"
uses: jaimergp/conda-build-action@main
with:
artifact-name: 'conda-packages-${{ matrix.os }}'