-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (47 loc) · 1.32 KB
/
main.yaml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: CI
on:
push:
branches:
- main
pull_request: []
jobs:
test:
name: Test IOR
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install compspec
run: pip install compspec
- name: Install compspec-ior
run: pip install .
- name: Test with loading data
run: compspec extract ior --ior-load ./examples/test/ior-data.json
- name: Test Python
run: python ./examples/singleton-run.py
validate-schema:
name: Validate schema
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Validate Schema
uses: compspec/actions/validate-schema@main
with:
schema: ./compspec_ior/schema.json
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup black linter
run: conda create --quiet --name black pyflakes
- name: Check Spelling
uses: crate-ci/typos@7ad296c72fa8265059cc03d1eda562fbdfcd6df2 # v1.9.0
with:
files: ./README.md
- name: Lint and format Python code
run: |
export PATH="/usr/share/miniconda/bin:$PATH"
source activate black
pip install -r .github/dev-requirements.txt
pre-commit run --all-files