Skip to content

Drop PCSX2 from the validation skiplist #383

Drop PCSX2 from the validation skiplist

Drop PCSX2 from the validation skiplist #383

Workflow file for this run

on: [push, pull_request]
name: Continuous integration
jobs:
fmt:
name: Rustfmt
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
name: Test/Clippy
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: clippy
- name: Install dependencies
run: sudo apt-get install -y libostree-dev flatpak-builder
- name: Check
uses: actions-rs/cargo@v1
with:
command: check
- name: Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
- name: Test
uses: actions-rs/cargo@v1
with:
command: test