mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-01-02 14:13:10 +00:00
24 lines
529 B
YAML
24 lines
529 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, windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Update
|
|
run: make update
|
|
- name: Tests
|
|
run: make tests
|
|
|