feat!: Change to native tls #59
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: Rust | |
on: | |
push: | |
branches: [ "main" ] | |
tags: [ "*" ] | |
pull_request: | |
branches: [ "*" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
permissions: | |
issues: write | |
pull-requests: write | |
contents: read | |
uses: famedly/backend-build-workflows/.github/workflows/rust-workflow.yml@main | |
secrets: inherit | |
integration-tests: | |
runs-on: ubuntu-latest | |
name: integration tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update Rust | |
shell: bash | |
run: rustup update | |
- name: Install cargo-make | |
shell: bash | |
run: cargo install --no-default-features --force cargo-make | |
- name: Start docker setup | |
shell: bash | |
run: cargo make start-docker-setup | |
- name: Run integration tests | |
shell: bash | |
run: cargo test -- --ignored | |