Skip to content

Commit

Permalink
Artifact folder
Browse files Browse the repository at this point in the history
  • Loading branch information
joepio committed Jul 25, 2023
1 parent 4cb718d commit 65df964
Showing 1 changed file with 9 additions and 16 deletions.
25 changes: 9 additions & 16 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,6 @@ on: [push, workflow_dispatch]

name: "Build, test, clippy"
jobs:
coverage:
name: Code coverage
runs-on: ubuntu-latest
steps:
- run: |
sudo apt-get update
sudo apt-get install -y webkit2gtk-4.0 libayatana-appindicator3-dev
- uses: actions/checkout@v2
- name: Install Rust and llvm-tools-preview
run: rustup component add llvm-tools-preview --toolchain stable-x86_64-unknown-linux-gnu

fmt:
name: Rustfmt
runs-on: ubuntu-latest
Expand Down Expand Up @@ -79,11 +68,19 @@ jobs:
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
name: cargo clippy
with:
command: clippy

- uses: actions-rs/cargo@v1
name: cargo build
with:
command: build
args: --locked

- uses: taiki-e/install-action@nextest
- uses: actions-rs/cargo@v1
name: cargo nextest run
with:
command: nextest
args: run --all-features --retries 3
Expand All @@ -99,10 +96,6 @@ jobs:
files: lcov.info
fail_ci_if_error: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --locked
- run: nohup ./target/debug/atomic-server &
- name: Run end-to-end tests
working-directory: ./browser/
Expand All @@ -112,4 +105,4 @@ jobs:
if: failure()
with:
name: test-results
path: ./server/e2e_tests/test-results/
path: ./data-browser/tests/test-results/

0 comments on commit 65df964

Please sign in to comment.