Slava 73e2e9129a
feat: add devnet bootstrap nodes (#7)
* feat: add devnet bootstrap nodes

* feat(docker): adjust entrypoint to get marketplace address from url

* ci: add a way to run workflow manually
2025-06-27 14:13:08 +03:00

44 lines
862 B
YAML

name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check `nph` formatting
uses: arnetheduck/nph-action@v1
with:
version: 0.6.1
options: "./"
fail: true
suggest: true
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
nim: [2.2.4]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build Nim and dependencies
run: |
which gcc
gcc --version
make update
./env.sh nim --version
make
- name: Run tests
run: |
make test
- name: Build crawler
run: |
make