Skip to content

Commit

Permalink
Merge branch 'release/v1.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
julien1619 committed Feb 25, 2020
2 parents deb308c + 1338656 commit f69a1d4
Show file tree
Hide file tree
Showing 39 changed files with 2,306 additions and 1,534 deletions.
1 change: 1 addition & 0 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ RUST_LOG=api=trace
SIRENE_ENV=development
HOST=localhost
PORT=3000
API_KEY=
DATABASE_URL=postgresql://sirene:[email protected]:5432/sirene
TEMP_FOLDER=./data/temp
FILE_FOLDER=./data/files
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Rust

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
- name: Install minimal nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
override: true
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
Loading

0 comments on commit f69a1d4

Please sign in to comment.