Add crate to parse human-readable times #38
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: Build and Test Rust Code | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
build-and-test: | |
name: Build and Test | |
environment: cicd | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Install protobuf | |
run: sudo apt install -y protobuf-compiler && protoc --version | |
- name: Install latest stable Rust toolchain | |
run: rustup toolchain install stable --profile minimal --no-self-update | |
- name: Connect to cache | |
uses: Swatinem/rust-cache@v2 | |
- name: cargo build | |
run: cargo build --all-targets --release | |
- name: Login to Azure | |
uses: azure/login@v2 | |
with: | |
client-id: ${{ secrets.AZURE_CLIENT_ID }} | |
tenant-id: ${{ secrets.AZURE_TENANT_ID }} | |
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
- name: Write config | |
run: $GITHUB_WORKSPACE/target/release/get-config ${{ secrets.CONFIG_STORE_NAME }} > $GITHUB_WORKSPACE/.env | |
- name: cargo test | |
run: cargo test --release | |
- name: Upload Archive | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nueces-homies-bot | |
path: | | |
target/release/get-config | |