Version 2 of ZonedDateTime #77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |