forked from lavina/lavina
1
0
Fork 0
lavina/.gitea/workflows/test-pr.yml

20 lines
519 B
YAML
Raw Normal View History

2023-09-30 14:25:35 +00:00
name: check-and-test
on: [push, pull_request]
jobs:
check-and-test:
runs-on: ubuntu-latest
steps:
2023-09-30 14:30:24 +00:00
- name: git checkout repository
uses: actions/checkout@v4
2023-09-30 14:25:35 +00:00
- name: setup rust
uses: https://github.com/actions-rs/toolchain@v1
2023-09-30 14:30:24 +00:00
- name: cargo check
2023-09-30 14:25:35 +00:00
uses: https://github.com/actions-rs/cargo@v1
with:
command: check
2023-09-30 15:34:44 +00:00
- name: test
uses: https://github.com/actions-rs/cargo@v1
with:
2023-09-30 15:36:45 +00:00
command: test
args: --workspace -- --skip projections::irc