Another swing at rust.yml #43
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
# .github/workflows/rust.yml | |
name: Rust | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
DATABASE_URL: "mysql://${{ secrets.DB_USER }}:${{ secrets.DB_PASSWORD }}@localhost/bville_recycle" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Set up MariaDB | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y mariadb-server | |
sudo service mysql start | |
# Correct syntax for MariaDB user creation | |
sudo mysql -e "CREATE DATABASE IF NOT EXISTS bville_recycle;" | |
sudo mysql -e "DROP USER IF EXISTS '${{ secrets.DB_USER }}'@'localhost';" | |
sudo mysql -e "CREATE USER '${{ secrets.DB_USER }}'@'localhost';" | |
sudo mysql -e "SET PASSWORD FOR '${{ secrets.DB_USER }}'@'localhost' = PASSWORD('${{ secrets.DB_PASSWORD }}');" | |
sudo mysql -e "GRANT ALL PRIVILEGES ON bville_recycle.* TO '${{ secrets.DB_USER }}'@'localhost';" | |
sudo mysql -e "FLUSH PRIVILEGES;" | |
- name: Build the Project | |
run: cargo build --verbose | |
- name: Run Tests | |
run: cargo test --verbose | |