Skip to content

ZI drivers + Rarr implementation #154

ZI drivers + Rarr implementation

ZI drivers + Rarr implementation #154

Workflow file for this run

---
name: Build
on: [push, pull_request]
jobs:
build:
steps:

Check failure on line 10 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 10, Col: 5): Required property is missing: runs-on
- name: Checkout
uses: actions/checkout@v3
- name: Cache conda
uses: actions/cache@v3
env:
# Increase this value to reset cache if etc/example-environment.yml has not changed
CACHE_NUMBER: 0
with:
path: ~/conda_pkgs_dir
- name: Setup miniconda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
channels: conda-forge,defaults
channel-priority: true
environment-file: environment.yml
miniconda-version: "latest"
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run build
shell: bash -l {0}
run: |
make write;
test/test_read_all.py