Skip to content

Prepare for publish

Prepare for publish #3

Workflow file for this run

name: CI
on:
push:
schedule:
- cron: '0 3 * * *'
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Test
run: make test