Skip to content

Add iterative and recursive linear searches (#30) #63

Add iterative and recursive linear searches (#30)

Add iterative and recursive linear searches (#30) #63

Workflow file for this run

---
name: nim_test
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
nim_test:
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
nim-version:
- '1.6.12'
steps:
- uses: actions/checkout@v3
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{matrix.nim-version}}
- name: Build and test
run: |
nim test
...