Skip to content

CI Build

CI Build #143

Workflow file for this run

---
name: CI Build
on:
push:
branches:
- '**'
paths-ignore:
- '**/*.md'
- 'LICENSE'
workflow_dispatch:
schedule:
- cron: '0 0 * * 1'
env:
RUSTFLAGS: '--deny warnings'
jobs:
build:
name: CI Build
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable]
TARGET:
- x86_64-unknown-linux-gnu
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Toolchain setup
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.TARGET }}
- name: Build
run: cargo build