Replace macro DSL with just templates #142
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
nimversion: | |
- '2.x' | |
os: | |
- ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: iffy/install-nim@v4 | |
with: | |
version: ${{ matrix.nimversion }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Cache packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.nimble | |
key: ${{ runner.os }}-${{ hashFiles('figuro.nimble') }} | |
- name: Install Nimble | |
run: | | |
nimble install nimble | |
nim -v | |
nimble -v | |
- name: Install Deps | |
run: | | |
# new atlas workspace | |
nimble install -d --verbose | |
- name: Test build From fig_ws/ | |
run: | | |
ls -lh | |
- name: Build Tests | |
run: | | |
cd figuro/ | |
nim test |