Update build file location #19
Workflow file for this run
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: maid_visual | |
on: | |
push: | |
branches: | |
- "*/*" | |
- "trunk" | |
- "build" | |
- "stable" | |
pull_request: | |
branches: | |
- "*/*" | |
- "trunk" | |
- "build" | |
- "stable" | |
schedule: | |
- cron: "0 0 * * *" # This schedule runs at midnight every day | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Depedencies | |
run: | | |
sudo apt update | |
- name: Test Depedencies | |
run: curl --version | |
- name: Build | |
run: cargo build --verbose --manifest-path maid_api/Cargo.toml | |
- name: Run tests | |
run: cargo test --verbose --manifest-path maid_api/Cargo.toml |