Bump uuid from 0.8.2 to 1.8.0 #595
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
profile: minimal | |
# Run all unit tests for server. | |
# - name: Testing server | |
# run: cargo test --verbose | |
# - name: Login to Heroku Container registry | |
# env: | |
# HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }} | |
# run: heroku container:login | |
# - name: Build and push | |
# env: | |
# HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }} | |
# run: heroku container:push -a bast-prod web | |
# - name: Release | |
# env: | |
# HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }} | |
# run: heroku container:release -a bast-prod web |