mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-01-02 06:03:09 +00:00
* chore: log build files. * chore: update nwaku * chore: use rln 0.9.0 * chore: fix file name * chore: fix path * chore: log the released file * chore: test log * chore: splite windows test ci * chore: splite windows test * chore: update nwaku * chore: update nwaku * chore: update windows ci deps * chore: update ci * chore: update ci * chore: update ci * chore: update ci * chore: update ci
24 lines
501 B
YAML
24 lines
501 B
YAML
name: test
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- '**README.md'
|
|
- '.gitignore'
|
|
- 'LICENSE'
|
|
jobs:
|
|
tests-tasks:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macOS-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Update
|
|
run: make update
|
|
- name: Tests
|
|
run: make tests
|