<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Efren Mercado Jr</title>
    <description>The latest articles on DEV Community by Efren Mercado Jr (@efrenmercadojr).</description>
    <link>https://dev.to/efrenmercadojr</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F394186%2Fc5221323-9d57-40e0-ac66-3fa01e2dfbac.jpeg</url>
      <title>DEV Community: Efren Mercado Jr</title>
      <link>https://dev.to/efrenmercadojr</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/efrenmercadojr"/>
    <language>en</language>
    <item>
      <title>Localstack S3 in Github Actions</title>
      <dc:creator>Efren Mercado Jr</dc:creator>
      <pubDate>Mon, 15 Nov 2021 11:43:53 +0000</pubDate>
      <link>https://dev.to/efrenmercadojr/localstack-s3-in-github-actions-31c1</link>
      <guid>https://dev.to/efrenmercadojr/localstack-s3-in-github-actions-31c1</guid>
      <description>&lt;p&gt;In your workflow &lt;code&gt;yml&lt;/code&gt; file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;services:
  localstack:
    image: localstack/localstack
    env:
      SERVICES: s3
      DEFAULT_REGION: ap-northeast-1
      DATA_DIR: /tmp/localstack/data
    ports: ["4566:4566"]
steps:
  - name: Configure localstack
    run: |
      aws configure set aws_access_key_id localstack
      aws configure set aws_secret_access_key localstack
      aws configure set default.region ap-northeast-1
      aws mb s3://my-bucket --endpoint-url=http://localhost:4566
  - name: Run tests
    env:
      DEFAULT_REGION: ap-northeast-1
      AWS_ACCESS_KEY_ID: localstack
      AWS_SECRET_ACCESS_KEY: localstack
    run: # command to run your tests
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>aws</category>
      <category>github</category>
      <category>s3</category>
      <category>localstack</category>
    </item>
  </channel>
</rss>
