File: dev.yml

package info (click to toggle)
rust-time-tz 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,800 kB
  • sloc: awk: 692; makefile: 631; ansic: 618; xml: 515; sh: 458; perl: 34
file content (38 lines) | stat: -rw-r--r-- 1,272 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: time-tz CI build

on:
  - push
  - pull_request

jobs:
  check-audit:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
        with:
          submodules: recursive # garbage peace of shit mother fucking github downloading broken repositories!!!!!
          # GitLab is far better because it is not downloading broken repositories.
      - name: Install cargo-audit
        run: cargo install cargo-audit
      - name: Run audit
        run: cargo audit
  check-clippy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
        with:
          submodules: recursive # garbage peace of shit mother fucking github downloading broken repositories!!!!!
          # GitLab is far better because it is not downloading broken repositories.
      - name: Install clippy
        run: rustup component add clippy
      - name: Run clippy
        run: cargo clippy
  build-test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
        with:
          submodules: recursive # garbage peace of shit mother fucking github downloading broken repositories!!!!!
          # GitLab is far better because it is not downloading broken repositories.
      - name: Build and test
        run: cargo test --all-features