Skip to content

initial version

initial version #1

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
- name: Checkout submodules
uses: srt32/[email protected]
with:
args: git submodule update --init --recursive
- name: Set up Clang
uses: egor-tensin/setup-clang@v1
with:
version: latest
platform: x64
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose