Skip to content

fix: copy static assets to correct workdir #20

fix: copy static assets to correct workdir

fix: copy static assets to correct workdir #20

Workflow file for this run

name: Build and Test
on:
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
RUST_LOG: ${{ secrets.RUST_LOG }}
APP_PORT: ${{ secrets.APP_PORT }}
DATABASE_URL: ${{ secrets.DATABASE_URL }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose