Skip to content

Redux 2023

Redux 2023 #8

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:
- uses: actions/checkout@v3
- name: Set up LLVM 15
run: |
sudo apt-get install -y clang-15 llvm-15-dev
# sudo ln -s /usr/bin/llvm-config-15 /usr/bin/llvm-config
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose