Skip to content

Merge branch 'master' of https://github.com/Rexicon226/osmium #17

Merge branch 'master' of https://github.com/Rexicon226/osmium

Merge branch 'master' of https://github.com/Rexicon226/osmium #17

Workflow file for this run

on:
pull_request:
push:
branches:
- master
jobs:
behaviour-test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v2
with:
version: 0.12.0-dev.3076+6e078883e
- name: Setup Python3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Restore cache
uses: actions/cache/restore@v3
with:
path: |
~/.cache/zig
zig-cache
key: osmium-${{hashFiles('build.zig.zon')}}
- name: Run Tests
run: zig build test --summary all
- name: Save Cache
uses: actions/cache/save@v3
with:
path: |
~/.cache/zig
zig-cache
key: osmium-${{hashFiles('build.zig.zon')}}