-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (28 loc) · 853 Bytes
/
install.yaml
File metadata and controls
30 lines (28 loc) · 853 Bytes
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
name: Install
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 0 * * 3'
jobs:
test-pypi-install:
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: [ "3.9", "3.10", "3.11" ]
steps:
- name: Set up Python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install --upgrade pip
pip install carpet-concentrations
- name: Checkout repository
uses: actions/checkout@v3
- name: Test installation (${{ matrix.os }} Python ${{ matrix.python-version }})
run: |
python scripts/test-install.py