Skip to content

Implement macros for defining plugins #120

Implement macros for defining plugins

Implement macros for defining plugins #120

Workflow file for this run

name: lint & test
on:
push:
branches: [ "develop" ]
jobs:
ubuntu:
runs-on: ubuntu-22.04
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: install tools
run: |
sudo apt-get update
sudo apt-get install libx11-dev libxext-dev libxft-dev libxinerama-dev libxcursor-dev libxrender-dev libxfixes-dev libpango1.0-dev libgl1-mesa-dev libglu1-mesa-dev -y
- name: lint
run: cargo clippy -- -D warnings
- name: test
run: cargo test --verbose
windows:
runs-on: windows-2022
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: lint
run: cargo clippy -- -D warnings
- name: test
run: cargo test --verbose