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
|