Skip to content

Remove unncecessary install action #26

Remove unncecessary install action

Remove unncecessary install action #26

Workflow file for this run

name: ci
on: [push, pull_request]
env:
RUSTFLAGS: "-Dwarnings"
jobs:
test:
name: Build and test
runs-on: ubuntu-latest
container: ghcr.io/verdiwm/ci-image:latest
steps:
- uses: actions/checkout@v4
# - name: Run tests
# run: cargo nextest run --all-features
- name: Check clippy
run: cargo clippy --all-targets --all-features
fmt:
name: Check Formatting
runs-on: ubuntu-latest
container: ghcr.io/verdiwm/ci-image:latest
steps:
- uses: actions/checkout@v4
- name: Run formatter
run: cargo fmt --check