Skip to content

feat: updated changelog #28

feat: updated changelog

feat: updated changelog #28

name: Check source code
on:
push:
branches: [ "master" ]
paths: [ "src/**" ]
pull_request:
branches: [ "master" ]
paths: [ "src/**" ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
check_source_code:
runs-on: ubuntu-latest
container:
image: ubuntu:devel
env:
DEBIAN_FRONTEND: noninteractive
steps:
- name: Install dependencies
run: |
apt update
apt install -y libgtk-4-dev libadwaita-1-dev libluajit-5.1-dev liblua5.1-0-dev git curl build-essential
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Checkout
uses: actions/checkout@v3
- name: Check source code
run: cargo check --verbose